ControllerProvider<T extends ReignController> constructor

const ControllerProvider<T extends ReignController>({
  1. Key? key,
  2. required T create(),
  3. required Widget child,
  4. String? scope,
})

Implementation

const ControllerProvider({
  super.key,
  required this.create,
  required this.child,
  this.scope,
});