ListFhirStoresResponse.fromJson constructor

ListFhirStoresResponse.fromJson(
  1. Map json_
)

Implementation

ListFhirStoresResponse.fromJson(core.Map json_)
    : this(
        fhirStores: json_.containsKey('fhirStores')
            ? (json_['fhirStores'] as core.List)
                .map((value) => FhirStore.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );