SelectableBox constructor

const SelectableBox({
  1. Key? key,
  2. UpstreamDownstreamNodeSelection? selection,
  3. required Color selectionColor,
  4. required Widget child,
})

Implementation

const SelectableBox({
  Key? key,
  this.selection,
  required this.selectionColor,
  required this.child,
}) : super(key: key);