EmailAddressAuthenticationAppleId.fromJson constructor

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

Parse from a json

Implementation

factory EmailAddressAuthenticationAppleId.fromJson(
        Map<String, dynamic> json) =>
    EmailAddressAuthenticationAppleId(
      token: json['token'],
    );