getGlobalConfiguration static method

Future<String> getGlobalConfiguration()

Implementation

static Future<String> getGlobalConfiguration() async {
  try {
    return await _channel.invokeMethod('getGlobalConfiguration');
  } on PlatformException catch (pe) {
    throw TealeafException(pe,
        msg: 'Unable to process global configuration settings message!');
  }
}