setEventUploadThreshold method
Implementation
Future<void> setEventUploadThreshold(int value) async {
Map<String, dynamic> properties = _baseProperties();
properties['eventUploadThreshold'] = value;
await _channel.invokeMethod(
'setEventUploadThreshold', jsonEncode(properties));
}