TimelineEventCard constructor

TimelineEventCard({
  1. required Widget title,
  2. required Widget content,
  3. EdgeInsetsGeometry padding = const EdgeInsets.only(left: 16, top: 12, right: 16, bottom: 20),
})

Implementation

TimelineEventCard({
  required this.title,
  required this.content,
  this.padding = const EdgeInsets.only(left: 16, top: 12, right: 16, bottom: 20),
});