clearAttribute static method

Future<void> clearAttribute(
  1. String key
)

Implementation

static Future<void> clearAttribute(String key) async {
  _init();
  await _channel?.invokeMethod('clearAttribute', <String, dynamic>{
    'key': key,
  });
}