Gap.v constructor

const Gap.v(
  1. double height, {
  2. Key? key,
  3. double? width,
  4. Color? color,
})

Implementation

const Gap.v(
  double height, {
  super.key,
  double? width,
  this.color,
})  : _width = width,
      _height = height;