toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var actuallyIncluded = this.actuallyIncluded;
  var excluded = this.excluded;
  var included = this.included;

  final json = <String, Object?>{};
  json[r'actuallyIncluded'] = actuallyIncluded;
  json[r'excluded'] = excluded;
  json[r'included'] = included;
  return json;
}