toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final identityConstraints = this.identityConstraints;
final labels = this.labels;
final maximumLifetime = this.maximumLifetime;
final name = this.name;
final passthroughExtensions = this.passthroughExtensions;
final predefinedValues = this.predefinedValues;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'identityConstraints': ?identityConstraints,
'labels': ?labels,
'maximumLifetime': ?maximumLifetime,
'name': ?name,
'passthroughExtensions': ?passthroughExtensions,
'predefinedValues': ?predefinedValues,
'updateTime': ?updateTime,
};
}