Restaurant constructor

Restaurant({
  1. double? taxAmount,
  2. double? beverageAmount,
  3. double? foodAmount,
  4. String? serverID,
  5. double? tipAmount,
})

Implementation

Restaurant({
  this.taxAmount, this.beverageAmount, this.foodAmount, this.serverID,
  this.tipAmount
});