Scene constructor

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

Implementation

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