initial abstract method

Widget initial(
  1. BuildContext context,
  2. T? data
)

A build function called when the LxState of the data is initial.

As it's the default builder, it's mandatory to override it to have at least a default view fot the widget.

Implementation

Widget initial(BuildContext context, T? data);