GetXControllerBuilder<T extends GetLifeCycleMixin> typedef
GetXControllerBuilder<T extends GetLifeCycleMixin> =
Widget Function(T controller)
A typedef for a function that builds a widget based on a GetX controller.
This function signature is used to define how the widget will be built based on the state of the controller. The controller must extend GetLifeCycleMixin.
Implementation
typedef GetXControllerBuilder<T extends GetLifeCycleMixin> = Widget Function(
T controller);