DslRunResult constructor

DslRunResult({
  1. required App app,
  2. required DslCompileResult compileResult,
  3. required String projectId,
  4. required String? commitId,
  5. required bool pushed,
  6. required bool dryRun,
  7. required List<String> taskSummaries,
})

Implementation

DslRunResult({
  required this.app,
  required this.compileResult,
  required this.projectId,
  required this.commitId,
  required this.pushed,
  required this.dryRun,
  required this.taskSummaries,
});