QuickRTCProvider constructor

const QuickRTCProvider({
  1. Key? key,
  2. required QuickRTCController controller,
  3. 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,
});