boolValue method

Future<bool?> boolValue()

Implementation

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