fromJson static method

EmailAddressAuthenticationAppleId? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static EmailAddressAuthenticationAppleId? fromJson(
  Map<String, dynamic>? json,
) {
  if (json == null) {
    return null;
  }

  return EmailAddressAuthenticationAppleId(
    token: (json['token'] as String?) ?? '',
  );
}