Items constructor

Items({
  1. String? description,
  2. String? name,
  3. UnitPrice? unitPrice,
  4. int? quantity,
  5. UnitPrice? total,
  6. String? details,
})

Implementation

Items(
    {this.description,
    this.name,
    this.unitPrice,
    this.quantity,
    this.total,
    this.details});