HomeownerDTO constructor

const HomeownerDTO({
  1. int? id,
  2. String? email,
  3. String? firstName,
  4. String? lastName,
  5. bool? hasAcceptedTC,
  6. List<String>? deviceSerialNumbers,
  7. bool? hasApprovedDevices,
  8. bool? hasAppAccount,
  9. bool? hasAcceptedMarketingOutreach,
})

Implementation

const HomeownerDTO({
  this.id,
  this.email,
  this.firstName,
  this.lastName,
  this.hasAcceptedTC,
  this.deviceSerialNumbers,
  this.hasApprovedDevices,
  this.hasAppAccount,
  this.hasAcceptedMarketingOutreach,
});