BundleEntry.get constructor

BundleEntry.get(
  1. String resourcePath, [
  2. FhirUri? canonicalBaseUrl
])

Implementation

factory BundleEntry.get(String resourcePath, [FhirUri? canonicalBaseUrl]) =>
    BundleEntry(
        fullUrl: canonicalBaseUrl == null
            ? null
            : '$canonicalBaseUrl/$resourcePath',
        request: BundleRequest(
          method: BundleRequestMethod.get_,
          url: resourcePath,
        ));