setGlobalProperty static method

Future<bool> setGlobalProperty(
  1. String key,
  2. String value,
  3. bool overrideExisting
)

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;
}