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 typedef defines the signature of a builder function that takes a T
controller,
which extends GetLifeCycleMixin, and returns a Widget.
Implementation
typedef GetXControllerBuilder<T extends GetLifeCycleMixin> = Widget Function(
T controller);