PlaygroundControllerProvider constructor

const PlaygroundControllerProvider({
  1. Key? key,
  2. required PlaygroundController controller,
  3. required Widget child,
})

Creates a widget that associates a PlaygroundController with a subtree.

Implementation

const PlaygroundControllerProvider({
  Key? key,
  required PlaygroundController this.controller,
  required Widget child,
}) : super(key: key, child: child);