errors method
Errors (for an Error Document)
Implementation
Iterable<ErrorObject> errors() => json
.get<List>('errors', orGet: () => [])
.whereType<Map>()
.map(_parse.errorObject);
Errors (for an Error Document)
Iterable<ErrorObject> errors() => json
.get<List>('errors', orGet: () => [])
.whereType<Map>()
.map(_parse.errorObject);