sqBox method

SizedBox sqBox(
  1. double size
)

Creates a square shaped SizedBox widget with the current widget as its child and sets its height and width

Implementation

SizedBox sqBox(double size) => sizedBox(h: size, w: size);