AdaptiveScheduleEntry constructor

const AdaptiveScheduleEntry({
  1. required String timeLabel,
  2. required String title,
  3. String? description,
  4. Widget? leading,
  5. Widget? trailing,
  6. Widget? child,
  7. Widget? footer,
})

Creates a schedule entry definition.

Implementation

const AdaptiveScheduleEntry({
  required this.timeLabel,
  required this.title,
  this.description,
  this.leading,
  this.trailing,
  this.child,
  this.footer,
});