FlutterTimeLine constructor

const FlutterTimeLine({
  1. Key? key,
  2. required List<ItemLineItem> itemsTimeLine,
  3. double? height,
  4. double? width,
  5. Axis direction = Axis.horizontal,
  6. TypeTimeLine typeTimeLine = TypeTimeLine.liner,
})

Implementation

const FlutterTimeLine({
  super.key,
  required this.itemsTimeLine,
  this.height,
  this.width,
  this.direction = Axis.horizontal,
  this.typeTimeLine = TypeTimeLine.liner,
});