InheritedInteractiveScope<T extends Object> constructor

const InheritedInteractiveScope<T extends Object>({
  1. Key? key,
  2. required InteractiveController<T> controller,
  3. InteractiveOptions<T> options = const InteractiveOptions(),
  4. required Widget child,
})

Implementation

const InheritedInteractiveScope({
  super.key,
  required this.controller,
  this.options = const InteractiveOptions(),
  required super.child,
});