arrayValue method

Future<List?> arrayValue()

Implementation

Future<List<dynamic>?> arrayValue() async {
  return await _channel?.invokeListMethod("getConfigValue", {
    "appId": appId,
    "templateCode": templateCode,
    "dataList": dataList,
    "type": "array"
  });
}