toJson method
Implementation
Map<String, Object?> toJson() {
var included = this.included;
var actuallyIncluded = this.actuallyIncluded;
var excluded = this.excluded;
final json = <String, Object?>{};
json[r'included'] = included;
json[r'actuallyIncluded'] = actuallyIncluded;
json[r'excluded'] = excluded;
return json;
}