GetScope constructor

const GetScope({
  1. Key? key,
  2. Iterable<SubAny> substitutes = const {},
  3. bool inherit = true,
  4. required Widget child,
})

Enables Ref.watch calls to point to new values, as specified by the substitutes.

Implementation

const GetScope({
  super.key,
  this.substitutes = const {},
  this.inherit = true,
  required this.child,
});