GoogleCloudApigeeV1CommonNameConfig.fromJson constructor

GoogleCloudApigeeV1CommonNameConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1CommonNameConfig.fromJson(core.Map json_)
    : this(
        matchWildCards: json_.containsKey('matchWildCards')
            ? json_['matchWildCards'] as core.bool
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );