mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-19 15:04:26 +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 String testRunId;
|
||||||
final bool mock;
|
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() {
|
Map<String, dynamic> toJson() {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user