clearAttribute method

void clearAttribute(
  1. String key
)

Implementation

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