checkForPartMismatch method

  1. @override
Future<bool?> checkForPartMismatch()
override

checkForPartMismatch() returns a Boolean representing if the selected template was not designed with the supply that is installed in the connected printer.

Implementation

@override
Future<bool?> checkForPartMismatch() async {
  bool? partMismatch =
      await methodChannel.invokeMethod<bool>('checkForPartMismatch');
  return partMismatch;
}