InlineRow constructor

const InlineRow({
  1. Key? key,
  2. int wrapIndex = 0,
  3. MainAxisSize mainAxisSize = MainAxisSize.min,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  6. required List<Widget> children,
})

Implementation

const InlineRow({
  Key? key,
  this.wrapIndex = 0,
  this.mainAxisSize = MainAxisSize.min,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisAlignment = MainAxisAlignment.start,
  required this.children,
})  : assert(wrapIndex < children.length),
      assert(wrapIndex >= 0),
      super(key: key);