RadarDataPoint class
Represents a radar/spider chart data point.
Each point has a label (axis name) and a value (distance from center).
Example:
RadarDataPoint(
label: 'Speed',
value: 80,
)
Constructors
- RadarDataPoint({required String label, required double value})
-
Creates a radar data point.
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override