isAppleAccountLinked method

Future<bool> isAppleAccountLinked()

Implementation

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