PhoneNumberProjection constructor

PhoneNumberProjection({
  1. required String id,
  2. required String userId,
  3. required DateTime createdAt,
  4. required String phoneNumber,
  5. required PhoneNumberProjectionPhoneCountryEnum phoneCountry,
})

Returns a new PhoneNumberProjection instance.

Implementation

PhoneNumberProjection({
  required this.id,
  required this.userId,
  required this.createdAt,
  required this.phoneNumber,
  required this.phoneCountry,
});