toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cidrRange = this.cidrRange;
final createTime = this.createTime;
final labels = this.labels;
final name = this.name;
final purpose = this.purpose;
final state = this.state;
return {
'cidrRange': ?cidrRange,
'createTime': ?createTime,
'labels': ?labels,
'name': ?name,
'purpose': ?purpose,
'state': ?state,
};
}