removeGlobalContexts static method

Future<void> removeGlobalContexts(
  1. String tag, {
  2. required String tracker,
})

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});
}