OutputPort constructor

OutputPort({
  1. required String type,
  2. required String name,
  3. required String label,
})

Implementation

OutputPort({
  required this.type,
  required this.name,
  required this.label,
});