GoogleCloudApigeeV1ListDatastoresResponse.fromJson constructor
GoogleCloudApigeeV1ListDatastoresResponse.fromJson(
- 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,
);