errors method

Iterable<ErrorObject> errors()

Errors (for an Error Document)

Implementation

Iterable<ErrorObject> errors() => json
    .get<List>('errors', orGet: () => [])
    .whereType<Map>()
    .map(_parse.errorObject);