empty static method

Future<bool?> empty(
  1. int type
)

Implementation

static Future<bool?> empty(int type) async {
  // command.BaudRate = 9600;
  // command.Timeout = 1000;
  // command.RetryLevel = 3;
  final params = <String, dynamic>{
    'emptyMode': type,
  };
  return await _channel.invokeMethod('empty',params);
}