PlotConstraints class

A constraints object which specifies the bounding box of a plot

Constructors

PlotConstraints({required double xMin, required double xMax, required double yMin, required double yMax})
PlotConstraints.fromOffset({required Offset min, required Offset max})

Properties

hashCode int
The hash code for this object.
no setteroverride
isFinite bool
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
xMax double
Maximum value on x-axis.
final
xMin double
Minimum value on x-axis.
final
yMax double
Maximum value on y-axis.
final
yMin double
Minimum value on y-axis.
final

Methods

copyWith({double? xMin, double? xMax, double? yMax, double? yMin}) PlotConstraints
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(covariant PlotConstraints other) bool
The equality operator.
override