GridPadCells class

Non-modifiable class that store information about grid: rows and columns count, size information.

Available Extensions

Constructors

GridPadCells.gridSize({required int rowCount, required int columnCount})
Creating a grid with Weight sizes where Weight.size equal to 1.
GridPadCells.sizes({required Iterable<GridPadCellSize> rowSizes, required Iterable<GridPadCellSize> columnSizes})

Properties

columnCount int
Calculated total size of all columns.
no setter
columnSizes List<GridPadCellSize>
Contains information about size of each column.
final
columnsTotalSize TotalSize
Calculated total size of all columns.
final
hashCode int
The hash code for this object.
no setteroverride
rowCount int
Calculated total size of all rows.
no setter
rowSizes List<GridPadCellSize>
Contains information about size of each row.
final
rowsTotalSize TotalSize
Calculated total size of all rows.
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.
override