FillOrWrap constructor

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

Implementation

const FillOrWrap({
  super.key,
  this.spacing = 0,
  this.wrappedSpacing = 0,
  required super.children,
});