TrackerTheme constructor
Creates a TrackerTheme.
All parameters are optional and will fall back to theme defaults when not provided.
Parameters:
radius
(double?, optional): Corner radius in pixelsgap
(double?, optional): Spacing between segments in pixelsitemHeight
(double?, optional): Height of segments in pixels
Example:
TrackerTheme(
radius: 12.0,
gap: 4.0,
itemHeight: 48.0,
);
Implementation
const TrackerTheme({
this.radius,
this.gap,
this.itemHeight,
});