canAddPasses method

Future<bool> canAddPasses()

Returns a Boolean value that indicates whether the device supports adding passes.

Implementation

Future<bool> canAddPasses() async =>
    await wrapWithException(
      methodChannel.invokeMethod<bool>('canAddPasses'),
    ) ??
    false;