toJson method

Map<String, dynamic> toJson()

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,
  };
}