EmailAddressAuthenticationCode.fromJson constructor

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

Parse from a json

Implementation

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