DraftModeUIDateTimeline constructor

const DraftModeUIDateTimeline({
  1. Key? key,
  2. double width = defaultWidth,
  3. Color? lineColor,
  4. IconData? checkedIcon = _defaultCheckedIconToken,
  5. bool hasLeadingLine = true,
  6. bool hasTrailingLine = true,
})

Implementation

const DraftModeUIDateTimeline({
  super.key,
  this.width = defaultWidth,
  this.lineColor,
  this.checkedIcon = _defaultCheckedIconToken,
  this.hasLeadingLine = true,
  this.hasTrailingLine = true,
}) : assert(width > 0);