Scene constructor

Scene({
  1. String? title,
  2. String? description,
  3. String? startTime,
  4. String? endTime,
})

Implementation

Scene({
  this.title,
  this.description,
  this.startTime,
  this.endTime,
});