SetupFunctionBuilder<T extends SetupWidget<T> > typedef
SetupFunctionBuilder<T extends SetupWidget<T> > =
SetupFunction<T> Function(SetupBuildContext<T> context)
A function type that creates a setup function from a BuildContext.
This is used by SetupBuilder to provide the setup function in a more convenient inline format.
Parameters:
context: The setup build context
Returns: A SetupFunction that builds the widget on each reactive update
Implementation
typedef SetupFunctionBuilder<T extends SetupWidget<T>> = SetupFunction<T>
Function(SetupBuildContext<T> context);