M4eAuthPhoneNumberForm constructor
Implementation
factory M4eAuthPhoneNumberForm(
{@required UniqueId id, @required PhoneNumber phoneNumber}) {
assert(id != null, 'M4eAuthPhoneNumberForm [id] should not be null');
assert(phoneNumber != null,
'M4eAuthPhoneNumberForm [phoneNumber] should not be null');
return M4eAuthPhoneNumberForm._(id, phoneNumber);
}