xResponsiveGridList method

ResponsiveGridList xResponsiveGridList (
  1. {double desiredItemWidth,
  2. double minSpacing,
  3. bool scroll = true,
  4. bool squareCells = false}
)

Implementation

ResponsiveGridList xResponsiveGridList(
    {double desiredItemWidth,
    double minSpacing,
    bool scroll = true,
    bool squareCells = false}) {
  return ResponsiveGridList(
    desiredItemWidth: desiredItemWidth,
    minSpacing: minSpacing,
    scroll: scroll,
    squareCells: squareCells,
    children: this,
  );
}