related method

  1. @override
Uri related(
  1. String type,
  2. String id,
  3. String relationship
)
override

Returns a URL for the related resource or collection. The type and id identify the primary resource and the relationship is the relationship name. E.g. /books/123/authors.

Implementation

@override
Uri related(String type, String id, String relationship) =>
    _resolve([type, id, relationship]);