OrbitScope<T extends OrbitStore> constructor

const OrbitScope<T extends OrbitStore>({
  1. Key? key,
  2. required T create(),
  3. required Widget child,
})

Implementation

const OrbitScope({
  super.key,
  required this.create,
  required this.child,
});