getBoxCompact static method

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

Implementation

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