removeGlobalAttribute method

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

Removes a global attribute by key.

Implementation

@override
Future<void> removeGlobalAttribute(String key) async {
  await _channel.invokeMethod('removeGlobalAttribute', {'key': key});
}