WorkspaceRunner constructor

const WorkspaceRunner({
  1. required String id,
  2. required String target,
  3. required String sourcePackage,
  4. required String sourceAdapter,
  5. required String sourceCompatibilityId,
  6. required String runnerCompatibilityId,
  7. String? executable,
  8. List<String> args = const [],
  9. List<String> evidenceTypes = const [],
})

Implementation

const WorkspaceRunner({
  required this.id,
  required this.target,
  required this.sourcePackage,
  required this.sourceAdapter,
  required this.sourceCompatibilityId,
  required this.runnerCompatibilityId,
  this.executable,
  this.args = const [],
  this.evidenceTypes = const [],
});