GoogleCloudApigeeV1ListDatastoresResponse.fromJson constructor

GoogleCloudApigeeV1ListDatastoresResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListDatastoresResponse.fromJson(core.Map json_)
    : this(
        datastores: json_.containsKey('datastores')
            ? (json_['datastores'] as core.List)
                .map((value) => GoogleCloudApigeeV1Datastore.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );