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