SelectionRegistrarScope constructor Null safety
- {Key? key,
- required SelectionRegistrar registrar,
- required Widget child}
Creates a selection registrar scope that host the registrar.
Implementation
const SelectionRegistrarScope({
super.key,
required SelectionRegistrar this.registrar,
required super.child,
}) : assert(registrar != null);