ZenScopeProvider constructor

const ZenScopeProvider({
  1. Key? key,
  2. required ZenScope scope,
  3. required Widget child,
})

Implementation

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