isApplePayAvailable method

Future<bool> isApplePayAvailable()

Whether the current device can make Apple Pay payments.

Always returns false on non-iOS platforms.

Implementation

Future<bool> isApplePayAvailable() {
  throw UnimplementedError('isApplePayAvailable() has not been implemented.');
}