InputPort constructor

InputPort({
  1. required String type,
  2. required String name,
  3. required String label,
  4. bool hidePort = false,
  5. List<Control> controls = const [],
})

Implementation

InputPort({
  required this.type,
  required this.name,
  required this.label,
  this.hidePort = false,
  this.controls = const [],
});