GetDependencyScope constructor

const GetDependencyScope({
  1. Key? key,
  2. required Widget child,
  3. Set<String> keys = const {},
})

Implementation

const GetDependencyScope({
  super.key,
  required this.child,
  this.keys = const {},
});