toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final expireTime = this.expireTime;
final hash = this.hash;
final threatTypes = this.threatTypes;
return {
'expireTime': ?expireTime,
'hash': ?hash,
'threatTypes': ?threatTypes,
};
}