VariableScopeProvider constructor

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

Implementation

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