jet_instance/jet_instance library

Classes

Bindings
Bindings should be extended or implemented. When using JetMaterialApp, all JetPages and navigation methods (like Jet.to()) have a binding property that takes an instance of Bindings to manage the dependencies() (via Jet.put()) for the Route you are opening.
BindingsInterface<T>
InstanceInfo
JetxService
Unlike JetxController, which serves to control events on each of its pages, JetxService is not automatically disposed (nor can be removed with Jet.delete()). It is ideal for situations where, once started, that service will remain in memory, such as Auth control for example. Only way to remove it is Jet.reset().

Mixins

JetLifeCycleMixin
The GetLifeCycle
JetxServiceMixin
Allow track difference between JetxServices and JetxControllers

Typedefs

AsyncInstanceBuilderCallback<S> = Future<S> Function()
BindingBuilderCallback = void Function()
InstanceBuilderCallback<S> = S Function()
InstanceCreateBuilderCallback<S> = S Function(BuildContext _)