get static method

Future<String?> get({
  1. required String key,
})

Implementation

static Future<String?> get({required String key}) async =>
    await _channel.invokeMethod('get', {'key': key});