IssueTestResult constructor

const IssueTestResult({
  1. required bool generationSucceeded,
  2. String? generatedCode,
  3. List<String> generationErrors = const [],
  4. List<String> generationWarnings = const [],
  5. int classesGenerated = 0,
  6. required bool scriptSucceeded,
  7. dynamic scriptResult,
  8. Object? scriptError,
  9. StackTrace? scriptStackTrace,
  10. bool? bridgeCompiles,
  11. List<String> compilationErrors = const [],
})

Implementation

const IssueTestResult({
  required this.generationSucceeded,
  this.generatedCode,
  this.generationErrors = const [],
  this.generationWarnings = const [],
  this.classesGenerated = 0,
  required this.scriptSucceeded,
  this.scriptResult,
  this.scriptError,
  this.scriptStackTrace,
  this.bridgeCompiles,
  this.compilationErrors = const [],
});