VSOutputData<T> constructor

VSOutputData<T>({
  1. required String type,
  2. Widget interfaceIconBuilder(
    1. BuildContext context,
    2. GlobalKey<State<StatefulWidget>> anchor,
    3. VSInterfaceData data
    )?,
  3. String? title,
  4. String? toolTip,
  5. T outputFunction(
    1. Map<String, dynamic>
    )?,
})

Implementation

VSOutputData({
  required super.type,
  super.interfaceIconBuilder,
  super.title,
  super.toolTip,
  this.outputFunction,
});