GoogleCloudApigeeV1ListDeveloperAppsResponse.fromJson constructor

GoogleCloudApigeeV1ListDeveloperAppsResponse.fromJson(
  1. Map json_
)

Implementation

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