checkStatus static method

  1. @Deprecated('Use getStatus instead.')
Future checkStatus(
  1. {required String portName,
  2. required String emulation}
)

Check status of printer

Implementation

@Deprecated('Use getStatus instead.')
static Future<dynamic> checkStatus({
  required String portName,
  required String emulation,
}) async {
  dynamic result = await _channel.invokeMethod('checkStatus', {
    'portName': portName,
    'emulation': emulation,
  });
  return result;
}