TimelineThemeData.raw constructor

const TimelineThemeData.raw({
  1. required Axis direction,
  2. required Color color,
  3. required double nodePosition,
  4. required bool nodeItemOverlap,
  5. required double indicatorPosition,
  6. required IndicatorThemeData indicatorTheme,
  7. required ConnectorThemeData connectorTheme,
})

Create a TimelineThemeData given a set of exact values. All the values must be specified. They all must also be non-null.

This will rarely be used directly. It is used by lerp to create intermediate themes based on two themes created with the new TimelineThemeData constructor.

Implementation

const TimelineThemeData.raw({
  required this.direction,
  required this.color,
  required this.nodePosition,
  required this.nodeItemOverlap,
  required this.indicatorPosition,
  required this.indicatorTheme,
  required this.connectorTheme,
});