toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appId = this.appId;
final appPlatform = this.appPlatform;
final displayName = this.displayName;
final negative = this.negative;
return {
'appId': ?appId,
'appPlatform': ?appPlatform,
'displayName': ?displayName,
'negative': ?negative,
};
}