GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse.fromJson constructor

GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse.fromJson(
  1. Map json_
)

Implementation

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