M4eAuthPhoneNumberForm constructor
Implementation
const M4eAuthPhoneNumberForm(
{@required M4eUniqueId id, @required M4ePhoneNumber phoneNumber})
: assert(id != null, 'M4eAuthPhoneNumberForm [id] should not be null'),
assert(phoneNumber != null,
'M4eAuthPhoneNumberForm [phoneNumber] should not be null'),
this.id = id,
this.phoneNumber = phoneNumber;