FillOrWrap constructor

FillOrWrap({
  1. Key? key,
  2. double spacing = 0,
  3. double wrappedSpacing = 0,
  4. required List<Widget> children,
})

Implementation

FillOrWrap({
  Key? key,
  this.spacing = 0,
  this.wrappedSpacing = 0,
  required List<Widget> children,
}) : super(key: key, children: children);