PhonePlanDto constructor

PhonePlanDto({
  1. required String id,
  2. required String userId,
  3. required PhonePlanDtoPhoneCountryEnum phoneCountry,
  4. required DateTime createdAt,
})

Returns a new PhonePlanDto instance.

Implementation

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