ShortTermParking constructor

ShortTermParking({
  1. required int totalSpaces,
  2. String? notes,
})

Creates a ShortTermParking object.

Implementation

ShortTermParking({
  required this.totalSpaces,
  this.notes,
});