DraftModeUITimelineRow constructor

const DraftModeUITimelineRow({
  1. Key? key,
  2. required Widget child,
  3. IconData? icon,
  4. Color? lineColor,
  5. bool hasLeadingLine = true,
  6. bool hasTrailingLine = true,
  7. bool expandedChild = true,
})

Implementation

const DraftModeUITimelineRow({
  super.key,
  required this.child,
  this.icon,
  this.lineColor,
  this.hasLeadingLine = true,
  this.hasTrailingLine = true,
  this.expandedChild = true,
});