isAppleAccountLinked method
New Methods for Tap to Pay Support
Implementation
@override
Future<bool> isAppleAccountLinked() async {
final bool? linked =
await methodChannel.invokeMethod<bool>('isAppleAccountLinked');
return linked ?? false;
}