child property

Widget? child
final

A watchable-independent widget which is passed back to the builder.

This argument is optional and can be null if the entire widget subtree the builder builds depends on the value of the watchable. For example, if the watchable's state is a String and the builder simply returns a Text widget with the String value.

Implementation

final Widget? child;