getConfig static method

Future getConfig()

Implementation

static Future<dynamic> getConfig() async {
  var sendData = {
    'service': "platform",
    'functionName': "getConfig",
    'data': {'_autoRefreshTime': 65000, '_cacheRefresh': true, '_catch': true}
  };

  return GlobalConfig.myWebSocket.load(sendData);
}