child property Null safety

Widget? child
final

The widget below this widget in the tree.

This widget can only have one child. To lay out multiple children, let this widget's child be a widget such as Row, Column, or Stack, which have a children property, and then provide the children to that widget.

Typically this the child will be a Row, with the first child being an IconButton with the Icons.menu icon.

Implementation

final Widget? child;