setBatchSupportEnabledWithSize static method

Future<String?> setBatchSupportEnabledWithSize(
  1. bool isEnabled,
  2. int size
)

Implementation

static Future<String?> setBatchSupportEnabledWithSize(
    bool isEnabled, int size) async {
  final String? version = await _channel
      .invokeMethod('setBatchSupportEnabledWithSize', [isEnabled, size]);
  return 'successfull $version';
}