GoogleCloudApigeeV1ListExportsResponse.fromJson constructor

GoogleCloudApigeeV1ListExportsResponse.fromJson(
  1. Map json_
)

Implementation

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