PlaygroundControllerProvider.none constructor

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

Creates a subtree without an associated PlaygroundController.

Implementation

const PlaygroundControllerProvider.none({
  Key? key,
  required Widget child,
})  : controller = null,
      super(key: key, child: child);