History constructor

History({
  1. int? id,
  2. String? publicName,
  3. int? proIdOwner,
  4. int? createdAt,
  5. String? beerName,
  6. int? quantity,
  7. double? amount,
  8. String? currency,
})

Implementation

History(
    {this.id,
    this.publicName,
    this.proIdOwner,
    this.createdAt,
    this.beerName,
    this.quantity,
    this.amount,
    this.currency});