getMagicLinkStatus method
Implementation
@override
Future<AuthResult?> getMagicLinkStatus(String magicLinkId) async {
try {
final jsonString = await methodChannel.invokeMethod<String>(
'getMagicLinkStatus', {'magicLinkId': magicLinkId});
return AuthResult.fromJson(jsonString!);
} catch (e) {
throw PassageError.fromObject(object: e);
}
}