fixedSame static method

List<GridPadCellSize> fixedSame(
  1. int count,
  2. double size
)

Create a list with length count of fixed cell sizes with size size.

Implementation

static List<GridPadCellSize> fixedSame(int count, double size) {
  return List.generate(count, (index) => size.fx());
}