writeDefaults static method

Future<void> writeDefaults(
  1. String key,
  2. String value
)

Writes the provided value at the key in the shared dictionaries.

Implementation

static Future<void> writeDefaults(String key, String value) async {
  await _platform.invokeMethod('writeDefaults', {'key': key, 'value': value});
}