MaintenanceNoteDTO constructor

const MaintenanceNoteDTO({
  1. int? id,
  2. DateTime? timestamp,
  3. String? contents,
  4. bool? authorIsDealer,
  5. DealerUserDTO? dealerAuthor,
})

Implementation

const MaintenanceNoteDTO({
  this.id,
  this.timestamp,
  this.contents,
  this.authorIsDealer,
  this.dealerAuthor,
});