ScreenInjection<T extends ScreenController> constructor
ScreenInjection<T extends ScreenController> ({
- Key? key,
- required T controller,
- ScreenReceiveArgs receiveArgs = const ScreenReceiveArgs(identity: "", receive: false),
- required ScreenBridge<
ScreenController, ScreenInjection< child,ScreenController> > - BuildContext? context,
Implementation
ScreenInjection({
Key? key,
required this.controller,
this.receiveArgs = const ScreenReceiveArgs(identity: "", receive: false),
required ScreenBridge child,
this.context
}) : super(
key: key,
child: child
) {
dependencies(context);
}