isDeviceCapable method

Future<bool> isDeviceCapable()

Implementation

Future<bool> isDeviceCapable() {
  if (Platform.isIOS) {
    return SquareMobilePaymentsSdkPlatform.instance.isDeviceCapable();
  }
  return Future.error(_notSupportedError());
}