getAttribute static method

Future getAttribute(
  1. String key
)

Implementation

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