get static method

Future get(
  1. String key
)

Reads a value of any type from persistent storage under the specified content provider.

If the persistent storage does not contains key, then null will be returned

Implementation

static Future<dynamic> get(String key) {
  return _channel.invokeMethod('get', {'key': key});
}