GoogleCloudApigeeV1Metadata.fromJson constructor

GoogleCloudApigeeV1Metadata.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1Metadata.fromJson(core.Map json_)
    : this(
        errors: (json_['errors'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        notices: (json_['notices'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );