ValidationException constructor
Implementation
ValidationException(String field, String message)
: super(
422,
'Validation Error',
body: {
'detail': [
{
'loc': ['body', field],
'msg': message,
'type': 'value_error',
},
],
},
);