setGlobalProperty static method
Implementation
static Future<bool> setGlobalProperty(
String key, String value, bool overrideExisting) async {
final bool isGlobalPropertySet = await _channel.invokeMethod(
'setGlobalProperty',
{'key': key, 'value': value, 'overrideExisting': overrideExisting});
return isGlobalPropertySet;
}