PhoneNumberDto constructor

PhoneNumberDto({
  1. required String id,
  2. required String userId,
  3. String? complianceAddress,
  4. String? emergencyAddress,
  5. required String phoneNumber,
  6. required PhoneNumberDtoPhoneCountryEnum phoneCountry,
  7. required String phonePlan,
  8. required DateTime createdAt,
  9. required DateTime updatedAt,
})

Returns a new PhoneNumberDto instance.

Implementation

PhoneNumberDto({
  required this.id,
  required this.userId,
  this.complianceAddress,
  this.emergencyAddress,
  required this.phoneNumber,
  required this.phoneCountry,
  required this.phonePlan,
  required this.createdAt,
  required this.updatedAt,
});