GoogleCloudApigeeV1ListCustomReportsResponse.fromJson constructor

GoogleCloudApigeeV1ListCustomReportsResponse.fromJson(
  1. Map json_
)

Implementation

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