WarrantyDto constructor

WarrantyDto(
  1. {required String id,
  2. required String billId,
  3. String? lineItemId,
  4. DateTime? warrantyStart,
  5. required DateTime warrantyEnd,
  6. String? warrantyName,
  7. List<ReminderDto>? reminders,
  8. required bool notificationIsActivated}
)

Implementation

WarrantyDto({
  required this.id,
  required this.billId,
  this.lineItemId,
  this.warrantyStart,
  required this.warrantyEnd,
  this.warrantyName,
  this.reminders,
  required this.notificationIsActivated,
});