isSupplyValid method
isSupplyValid() returns a boolean representing if the supply is valid for the connected printer.
Implementation
@override
Future<bool?> isSupplyValid() async {
bool? supplyValid = await methodChannel.invokeMethod<bool>('isSupplyValid');
return supplyValid;
}