intValue method

Future<int?> intValue()

Implementation

Future<int?> intValue() async {
  return await _channel?.invokeMethod("getConfigValue", {
    "appId": appId,
    "templateCode": templateCode,
    "dataList": dataList,
    "type": "int"
  });
}