toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final justifications = this.justifications;
final photos = this.photos;
final reviews = this.reviews;
return {
'justifications': ?justifications,
'photos': ?photos,
'reviews': ?reviews,
};
}