Row constructor

const Row({
  1. required List<Component> children,
  2. int childGap = 1,
})

Creates a new Row layout.

The children parameter must not be null.

Implementation

const Row({required this.children, this.childGap = 1});