GoogleCloudApigeeV1ListSharedFlowsResponse.fromJson constructor

GoogleCloudApigeeV1ListSharedFlowsResponse.fromJson(
  1. Map json_
)

Implementation

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