WhaleScope constructor

const WhaleScope({
  1. Key? key,
  2. required Widget child,
  3. void setup(
    1. WhaleScopeRegistry scope
    )?,
})

Implementation

const WhaleScope({
  super.key,
  required this.child,
  this.setup,
});