Wrap constructor

const Wrap({
  1. List<Widget> children = const <Widget>[],
  2. double spacing = 6,
  3. double runSpacing = 6,
  4. WrapAlignment alignment = WrapAlignment.start,
})

Wrap API.

Implementation

const Wrap({
  this.children = const <Widget>[],
  this.spacing = 6,
  this.runSpacing = 6,
  this.alignment = WrapAlignment.start,
});