setEventUploadThreshold method

Future<void> setEventUploadThreshold(
  1. int value
)

Implementation

Future<void> setEventUploadThreshold(int value) async {
  Map<String, dynamic> properties = _baseProperties();
  properties['eventUploadThreshold'] = value;

  await _channel.invokeMethod(
      'setEventUploadThreshold', jsonEncode(properties));
}