App constructor

const App({
  1. required List<Component> children,
  2. Axis layoutDirection = Axis.vertical,
})

Creates an App with the given children and an optional layoutDirection (default is Axis.vertical).

Implementation

const App({required this.children, this.layoutDirection = Axis.vertical});