ActionCandidate constructor

const ActionCandidate({
  1. String? id,
  2. required String label,
  3. required String to,
  4. String? from,
  5. required String trigger,
  6. String? condition,
  7. String? enclosingClassName,
  8. required SourceRef sourceRef,
})

Implementation

const ActionCandidate({
  this.id,
  required this.label,
  required this.to,
  this.from,
  required this.trigger,
  this.condition,
  this.enclosingClassName,
  required this.sourceRef,
});