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