isPreprintedSupply method

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

isPreprintedSupply() returns a boolean representing if the supply is pre-printed.

Implementation

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