VSNodeOutput constructor

const VSNodeOutput({
  1. required VSOutputData data,
  2. Key? key,
})

Base node output widget

Used in VSNode

Uses Draggable to make a connection with VSInputData

Implementation

const VSNodeOutput({
  required this.data,
  super.key,
});