put static method

Future<void> put({
  1. required String key,
  2. required String value,
})

Implementation

static Future<void> put({required String key, required String value}) async =>
    _channel.invokeMethod('put', {'key': key, 'value': value});