TimeLineStyle constructor

const TimeLineStyle({
  1. Color backgroundColor = Colors.white,
  2. TextStyle textStyle = const TextStyle(color: Colors.black, fontWeight: FontWeight.w400, fontSize: 13),
  3. Color borderColor = Colors.grey,
})

Implementation

const TimeLineStyle({
  this.backgroundColor = Colors.white,
  this.textStyle = const TextStyle(
    color: Colors.black,
    fontWeight: FontWeight.w400,
    fontSize: 13,
  ),
  this.borderColor = Colors.grey,
});