TimelineCard constructor

const TimelineCard({
  1. Key? key,
  2. required String title,
  3. required String subtitle,
  4. ImageProvider<Object>? imageProvider,
  5. bool isLast = false,
})

Implementation

const TimelineCard({
  super.key,
  required this.title,
  required this.subtitle,
  this.imageProvider,
  this.isLast = false,
});