chore(server): patch dart openapi assertion ()

* chore(server): patch dart openapi assertion

* remove unused file
This commit is contained in:
Alex 2023-06-22 12:48:57 -05:00 committed by GitHub
parent 3e2f335a4c
commit 4311d385fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
93 changed files with 103 additions and 94 deletions
mobile/openapi/lib/model

View file

@ -55,7 +55,7 @@ class QueueStatusDto {
assert(() {
requiredKeys.forEach((key) {
assert(json.containsKey(key), 'Required key "QueueStatusDto[$key]" is missing from JSON.');
assert(json[key] != null, 'Required key "QueueStatusDto[$key]" has a null value in JSON.');
// assert(json[key] != null, 'Required key "QueueStatusDto[$key]" has a null value in JSON.');
});
return true;
}());