GoogleCloudApigeeV1ListOfDevelopersResponse.fromJson constructor

GoogleCloudApigeeV1ListOfDevelopersResponse.fromJson(
  1. Map json_
)

Implementation

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