RowGap constructor

const RowGap({
  1. Key? key,
  2. required List<Widget> children,
  3. double gap = 16.0,
  4. double paddingX = 0,
  5. double paddingY = 0,
})

Implementation

const RowGap({
  super.key,
  required this.children,
  this.gap = 16.0,
  this.paddingX = 0,
  this.paddingY = 0,
});