BundleLinkUsCore constructor

BundleLinkUsCore({
  1. String? id,
  2. String? relation,
  3. FhirUri? url,
})

BundleLinkUsCore A container for a collection of resources.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

relation A name which details the functional use for this link - see (http://www.iana.org/assignments/link-relations/link-relations.xhtml#link-relations-1).

url The reference details for the link.

Implementation

factory BundleLinkUsCore({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.

  String? id,

  /// [relation] A name which details the functional use for this link - see
  /// (http://www.iana.org/assignments/link-relations/link-relations.xhtml#link-relations-1).

  String? relation,

  /// [url] The reference details for the link.
  FhirUri? url,
}) =>
    BundleLinkUsCore._(BundleLink(id: id, relation: relation, url: url));