M4eAuthPhoneNumberForm.fromJson constructor

M4eAuthPhoneNumberForm.fromJson(Map<String, dynamic> json)

Implementation

factory M4eAuthPhoneNumberForm.fromJson(Map<String, dynamic> json) {
  return M4eAuthPhoneNumberForm(
    id: M4eUniqueId.fromUniqueString(json['id']),
    phoneNumber: M4ePhoneNumber.fromJson(json['phone']),
  );
}