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