TimeLineChild constructor

const TimeLineChild({
  1. Key? key,
  2. String? title,
  3. String? subtitle,
  4. TextStyle? tittleStyle,
  5. TextStyle? subtitleStyle,
})

Implementation

const TimeLineChild({
  Key? key,
  this.title,
  this.subtitle,
  this.tittleStyle,
  this.subtitleStyle,
}) : super(key: key);