ListHl7V2StoresResponse.fromJson constructor

ListHl7V2StoresResponse.fromJson(
  1. Map json_
)

Implementation

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