Collection constructor

const Collection({
  1. List<Widget> children = const <Widget>[],
  2. double gap = 16,
  3. bool fillWidth = true,
  4. Key? key,
})

Implementation

const Collection({
  this.children = const <Widget>[],
  this.gap = 16,
  this.fillWidth = true,
  super.key,
});