GetXControllerBuilder<T extends GetLifeCycleMixin> typedef

GetXControllerBuilder<T extends GetLifeCycleMixin> = Widget Function(T controller)

A typedef representing a builder function for GetX controllers.

This typedef defines a function signature for building widgets based on GetX controllers. It takes a single parameter of type T, which is expected to be a subclass of GetLifeCycleMixin, and returns a Widget.

Implementation

typedef GetXControllerBuilder<T extends GetLifeCycleMixin> = Widget Function(
    T controller);