BinderScope constructor

const BinderScope({
  1. Key? key,
  2. List<BinderOverride> overrides = const [],
  3. List<StateObserver> observers = const [],
  4. required Widget child,
})

Creates a BinderScope.

overrides, observers and child must not be null.

Implementation

const BinderScope({
  Key? key,
  this.overrides = const [],
  this.observers = const [],
  required this.child,
}) : super(key: key);