fixedSizes static method

List<GridPadCellSize> fixedSizes(
  1. List<double> sizes
)

Create a list of fixed cell sizes with passed fixed sizes.

Implementation

static List<GridPadCellSize> fixedSizes(List<double> sizes) {
  return sizes.map((size) => size.fx()).toList();
}