GoogleCloudApigeeV1ProfileConfig.fromJson constructor

GoogleCloudApigeeV1ProfileConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ProfileConfig.fromJson(core.Map json_)
  : this(
      categories:
          (json_['categories'] as core.List?)
              ?.map(
                (value) => GoogleCloudApigeeV1ProfileConfigCategory.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );