statusEjetor method

Future<int> statusEjetor()

*statusEjetor

Check the status of the ejector hardware

Implementation

Future<int> statusEjetor() async {
  int? _status = await platform?.invokeMethod('statusEjector') ?? 9999;
  if (_status < 0) {
    throw ElginException(_status);
  }
  return _status;
}