MarkerWidget constructor
MarkerWidget({
- Key? key,
- required Marker data,
- required bool isFirst,
- required bool isLast,
- required TimelineProperties properties,
Creates a new MarkerWidget.
Requires data containing the marker's content and configuration,
position indicators isFirst and isLast, and timeline properties.
Implementation
MarkerWidget(
{Key? key,
required this.data,
required this.isFirst,
required this.isLast,
required this.properties})
: super(key: key);