QuickRTCProvider constructor
const
QuickRTCProvider({
- Key? key,
- required QuickRTCController controller,
- required Widget child,
Creates a QuickRTCProvider.
The controller parameter is the QuickRTCController instance to provide.
The child parameter is the widget tree that will have access to the controller.
Implementation
const QuickRTCProvider({
super.key,
required this.controller,
required super.child,
});