SelectableScope constructor

const SelectableScope({
  1. Key? key,
  2. required Widget child,
  3. required Select state,
})

Implementation

const SelectableScope({
  Key? key,
  required Widget child,
  required this.state,
}) : super(key: key, child: child);