getGlobalProperties static method

Future<Map> getGlobalProperties()

Implementation

static Future<Map> getGlobalProperties() async {
  final Map globalProperties =
      await _channel.invokeMethod('getGlobalProperties');
  return globalProperties;
}