MessageTimeline constructor

const MessageTimeline({
  1. Key? key,
  2. required String message,
  3. String? subTitle,
  4. Color? backGroundColor,
  5. double? headerXy,
  6. TextStyle? headerTitleStyle,
  7. TextStyle? headerSubTitleStyle,
})

Implementation

const MessageTimeline({
  Key? key,
  required this.message,
  this.subTitle,
  this.backGroundColor,
  this.headerXy,
  this.headerTitleStyle,
  this.headerSubTitleStyle,
}) : super(key: key);