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

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