Reservation constructor

Reservation({
  1. String? name,
  2. String? throughputCapacity,
})

Implementation

Reservation({
  this.name,
  this.throughputCapacity,
});