SliverGap.h constructor

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

Implementation

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