writeDefaults static method
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});
}