ConstrainedTableSize class
Defines size constraints for table columns or rows.
Specifies minimum and maximum size limits that can be applied to table dimensions. Used with ResizableTable to control resize boundaries.
Example:
ConstrainedTableSize(
min: 50.0, // Minimum 50 pixels
max: 300.0, // Maximum 300 pixels
)
Constructors
- ConstrainedTableSize({double min = double.negativeInfinity, double max = double.infinity})
-
Creates a ConstrainedTableSize with optional min and max values.
const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- max → double
-
Maximum allowed size. Defaults to positive infinity (no maximum).
final
- min → double
-
Minimum allowed size. Defaults to negative infinity (no minimum).
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
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 ==(
Object other) → bool -
The equality operator.
inherited