IssueTestResult constructor
const
IssueTestResult({
- required bool generationSucceeded,
- String? generatedCode,
- List<
String> generationErrors = const [], - List<
String> generationWarnings = const [], - int classesGenerated = 0,
- required bool scriptSucceeded,
- dynamic scriptResult,
- Object? scriptError,
- StackTrace? scriptStackTrace,
- bool? bridgeCompiles,
- 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 [],
});