OrderNote constructor

OrderNote({
  1. int? id,
  2. String? author,
  3. DateTime? dateCreated,
  4. DateTime? dateCreatedGmt,
  5. String? note,
  6. bool? customerNote,
  7. Links? links,
})

Implementation

OrderNote({
  this.id,
  this.author,
  this.dateCreated,
  this.dateCreatedGmt,
  this.note,
  this.customerNote,
  this.links,
});