getBoxComfortable static method

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

Implementation

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