value property
double
get
value
The value of this coordinate, or for a percentage, a number representing the percentage (0.5 for 50%, etc.)
Implementation
double get value => isPercent ? (_value / 100) : _value;