removeGlobalAttribute method

  1. @override
Future<void> removeGlobalAttribute(
  1. String key
)
override

Removes a global attribute by key (no-op if unsupported).

Implementation

@override
Future<void> removeGlobalAttribute(String key) async {
  try {
    clickstreamAnalytics?.removeGlobalAttribute(key);
  } catch (_) {}
}