getBoxCrowded static method

SizedBox getBoxCrowded({
  1. Key? key,
  2. Widget? child,
  3. double? coverWidth,
  4. double? coverHeight,
})

Implementation

static SizedBox getBoxCrowded(
    {Key? key, Widget? child, double? coverWidth, double? coverHeight}) {
  return getSquareBox(36, key: key, child: child);
}