stringValue method

Future<String?> stringValue()

Implementation

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