TrackerWorkflowConfig constructor

const TrackerWorkflowConfig({
  1. required String? kind,
  2. required String endpoint,
  3. required String? apiKey,
  4. required String? projectSlug,
  5. required List<String> activeStates,
  6. required List<String> terminalStates,
})

Creates tracker workflow config.

Implementation

const TrackerWorkflowConfig({
  required this.kind,
  required this.endpoint,
  required this.apiKey,
  required this.projectSlug,
  required this.activeStates,
  required this.terminalStates,
});