Change mock property to be required in ReportRequestBody

This commit is contained in:
hunteraraujo
2023-09-18 19:46:56 -07:00
parent b3d0cf9a22
commit 5814c5a365

View File

@@ -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 {