many static method

RelationshipUpdated<ToMany> many(
  1. Response response
)

Implementation

static RelationshipUpdated<ToMany> many(Response response) {
  final json = response.document;
  return RelationshipUpdated(
      response, json == null ? null : InboundDocument(json).asToMany());
}