removeGlobalAttribute method
Removes a global attribute by key (no-op if unsupported).
Implementation
@override
Future<void> removeGlobalAttribute(String key) async {
try {
clickstreamAnalytics?.removeGlobalAttribute(key);
} catch (_) {}
}
Removes a global attribute by key (no-op if unsupported).
@override
Future<void> removeGlobalAttribute(String key) async {
try {
clickstreamAnalytics?.removeGlobalAttribute(key);
} catch (_) {}
}