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