toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectionInfo = this.connectionInfo;
final createTime = this.createTime;
final displayName = this.displayName;
final expireTime = this.expireTime;
final name = this.name;
final spec = this.spec;
final state = this.state;
final ttl = this.ttl;
final updateTime = this.updateTime;
return {
'connectionInfo': ?connectionInfo,
'createTime': ?createTime,
'displayName': ?displayName,
'expireTime': ?expireTime,
'name': ?name,
'spec': ?spec,
'state': ?state,
'ttl': ?ttl,
'updateTime': ?updateTime,
};
}