DynamicRow constructor

const DynamicRow({
  1. Key? key,
  2. List<Widget> children = const <Widget>[],
  3. double vSpacing = 8,
  4. double hSpacing = 8,
  5. MainAxisSize mainAxisSize = MainAxisSize.max,
})

Implementation

const DynamicRow({
  super.key,
  super.children,
  this.vSpacing = 8,
  this.hSpacing = 8,
  this.mainAxisSize = MainAxisSize.max,
});