gapAll property

SizedBox get gapAll

A SizedBox with both scaled width and height.

Usage: Spacing.md.gapAllSizedBox(width: 16.s, height: 16.s)

Implementation

SizedBox get gapAll {
  final v = _base * _s;
  return SizedBox(width: v, height: v);
}