UnrestrictedUserEmail.fromJson constructor

UnrestrictedUserEmail.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory UnrestrictedUserEmail.fromJson(Map<String, Object?> json) {
  return UnrestrictedUserEmail(
    accountId: json[r'accountId'] as String?,
    email: json[r'email'] as String?,
  );
}