removeGlobalContexts static method
Removes global contexts with the given tag from the tracker namespace.
Implementation
static Future<void> removeGlobalContexts(String tag,
{required String tracker}) async {
await _channel
.invokeMethod('removeGlobalContexts', {'tracker': tracker, 'tag': tag});
}