GoogleCloudApigeeV1Properties.fromJson constructor

GoogleCloudApigeeV1Properties.fromJson(
  1. Map json_
)

Implementation

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