getValue method

Future<String?> getValue(
  1. String key
)

Returns the value of the String type corresponding to the key.

Implementation

Future<String?> getValue(String key) {
  return _channel.invokeMethod('getValue', <String, String>{'key': key});
}