FlyTimeline constructor

FlyTimeline({
  1. Key? key,
  2. Axis direction = Axis.vertical,
  3. List<FlyTimelineItem> children = const <FlyTimelineItem>[],
  4. double lineHeight = 50.0,
  5. double lineWidth = 2.0,
  6. EdgeInsetsGeometry padding = EdgeInsets.zero,
})

Implementation

FlyTimeline(
    {Key? key,
    this.direction = Axis.vertical,
    this.children = const <FlyTimelineItem>[],
    this.lineHeight = 50.0,
    this.lineWidth = 2.0,
    this.padding = EdgeInsets.zero})
    : super(key: key);