LeanSpacedRow constructor

const LeanSpacedRow({
  1. Key? key,
  2. MainAxisAlignment? mainAxisAlignment,
  3. CrossAxisAlignment? crossAxisAlignment,
  4. required List<Widget> children,
  5. double? spaceDx,
})

This constructor requires list of children Widgets.

Implementation

const LeanSpacedRow(
    {Key? key,
      this.mainAxisAlignment,
      this.crossAxisAlignment,
      required this.children,
      this.spaceDx})
    : super(key: key);