AccountProperty constructor

AccountProperty({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? addressLine3,
  4. String? county,
  5. List<AccountElectricityMeterPoint>? electricityMeterPoints,
  6. List<AccountGasMeterPoint>? gasMeterPoints,
  7. required int id,
  8. required DateTime movedInAt,
  9. DateTime? movedOutAt,
  10. String? postcode,
  11. String? town,
})

Implementation

AccountProperty({
  this.addressLine1,
  this.addressLine2,
  this.addressLine3,
  this.county,
  this.electricityMeterPoints,
  this.gasMeterPoints,
  required this.id,
  required this.movedInAt,
  this.movedOutAt,
  this.postcode,
  this.town,
});