ZenControllerScope<T extends ZenController> constructor

const ZenControllerScope<T extends ZenController>({
  1. required T create(),
  2. required Widget child,
  3. String? tag,
  4. bool permanent = false,
  5. ZenScope? scope,
  6. List dependencies = const [],
  7. Key? key,
})

Implementation

const ZenControllerScope({
  required this.create,
  required this.child,
  this.tag,
  this.permanent = false,
  this.scope,
  this.dependencies = const [],
  super.key,
});