toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final activityType = this.activityType;
final newItemCount = this.newItemCount;
final totalItemCount = this.totalItemCount;
return {
'activityType': ?activityType,
'newItemCount': ?newItemCount,
'totalItemCount': ?totalItemCount,
};
}