toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final constraints = this.constraints;
final platformType = this.platformType;
final state = this.state;
final threatEntryType = this.threatEntryType;
final threatType = this.threatType;
return {
'constraints': ?constraints,
'platformType': ?platformType,
'state': ?state,
'threatEntryType': ?threatEntryType,
'threatType': ?threatType,
};
}