toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final additions = this.additions;
final checksum = this.checksum;
final newClientState = this.newClientState;
final platformType = this.platformType;
final removals = this.removals;
final responseType = this.responseType;
final threatEntryType = this.threatEntryType;
final threatType = this.threatType;
return {
'additions': ?additions,
'checksum': ?checksum,
'newClientState': ?newClientState,
'platformType': ?platformType,
'removals': ?removals,
'responseType': ?responseType,
'threatEntryType': ?threatEntryType,
'threatType': ?threatType,
};
}