objectValue method

Future<Map<String, dynamic>?> objectValue()

Implementation

Future<Map<String, dynamic>?> objectValue() async {
  return await _channel?.invokeMapMethod("getConfigValue", {
    "appId": appId,
    "templateCode": templateCode,
    "dataList": dataList,
    "type": "object"
  });
}