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