FlSpot class
Represents a conceptual position in cartesian (axis based) space.
- Implementers
- Annotations
Constructors
- FlSpot.new(double x, double y, {FlErrorRange? xError, FlErrorRange? yError})
-
x
determines cartesian (axis based) horizontally position 0 means most left point of the chartconst
Properties
- hashCode → int
-
Override hashCode
no setteroverride
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- x → double
-
final
- xError → FlErrorRange?
-
final
- y → double
-
final
- yError → FlErrorRange?
-
final
Methods
-
copyWith(
{double? x, double? y, FlErrorRange? xError, FlErrorRange? yError}) → FlSpot - Copies current FlSpot to a new FlSpot, and replaces provided values.
-
isNotNull(
) → bool - Determines if x and y is not null.
-
isNull(
) → bool - Determines if x or y is null.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
Prints x and y coordinates of FlSpot list
override