SignalScope constructor

const SignalScope({
  1. Key? key,
  2. required Map<Node, Node> overrides,
  3. required Widget child,
})

Creates a SignalScope with the given overrides and a child widget.

Implementation

const SignalScope({
  super.key,
  required this.overrides,
  required super.child,
});