enableDeviceNetworkInfoReporting static method

Future<void> enableDeviceNetworkInfoReporting(
  1. bool value
)

Enables Device & Networking Information Reporting to CleverTap

Implementation

static Future<void> enableDeviceNetworkInfoReporting(bool value) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('enableDeviceNetworkInfoReporting', {'value': value});
}