clearAttribute method

Future<void> clearAttribute(
  1. String key
)

Implementation

Future<void> clearAttribute(String key) async {
  try {
    _channel.invokeMethod('clearAttribute', key);
  } on Exception catch (e) {
    Logger.i("$e Error in clearAttribute");
  }
}