toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allow = this.allow;
final apiProxies = this.apiProxies;
final conditionConfig = this.conditionConfig;
final createTime = this.createTime;
final deny = this.deny;
final description = this.description;
final expireTime = this.expireTime;
final flag = this.flag;
final name = this.name;
final state = this.state;
final ttl = this.ttl;
final updateTime = this.updateTime;
return {
'allow': ?allow,
'apiProxies': ?apiProxies,
'conditionConfig': ?conditionConfig,
'createTime': ?createTime,
'deny': ?deny,
'description': ?description,
'expireTime': ?expireTime,
'flag': ?flag,
'name': ?name,
'state': ?state,
'ttl': ?ttl,
'updateTime': ?updateTime,
};
}