Sets a custom key-value pair.
@override Future<void> setCustomKey(String key, Object value) async { await Sentry.configureScope((scope) { scope.setTag(key, value.toString()); }); }