fromJson static method
Inherited by: EmailAddressAuthenticationAppleId EmailAddressAuthenticationCode EmailAddressAuthenticationGoogleId
Implementation
static EmailAddressAuthenticationGoogleId? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return EmailAddressAuthenticationGoogleId(
token: (json['token'] as String?) ?? '',
);
}