Open constructor

Open({
  1. String? date,
  2. int? day,
  3. String? time,
})

Creates an Open instance.

Implementation

Open({
  this.date,
  this.day,
  this.time,
});