mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
Change mock property to be required in ReportRequestBody
This commit is contained in:
@@ -3,7 +3,8 @@ class ReportRequestBody {
|
||||
final String testRunId;
|
||||
final bool mock;
|
||||
|
||||
ReportRequestBody(this.mock, {required this.test, required this.testRunId});
|
||||
ReportRequestBody(
|
||||
{required this.test, required this.testRunId, required this.mock});
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user