RowSpaceBetween constructor

const RowSpaceBetween({
  1. Key? key,
  2. required List<Widget> children,
})

Constructs a RowSpaceBetween widget.

The children parameter is required and represents the list of widgets to be displayed in the row.

Implementation

const RowSpaceBetween({Key? key, required this.children}) : super(key: key);