build method
Convenience method that can build the widget this data object represents.
This is the equilivant of calling: builder.build
and padding this in as
the data parameter.
Implementation
@override
Widget build({
ChildWidgetBuilder? childBuilder,
required BuildContext context,
}) =>
data.build(
childBuilder: childBuilder,
context: context,
);