statusEjetor method
*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;
}