toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final report = this.report;
  return {
    if (report != null) 'Report': report,
  };
}