CreateReportGroupOutput.fromJson constructor
Implementation
factory CreateReportGroupOutput.fromJson(Map<String, dynamic> json) {
return CreateReportGroupOutput(
reportGroup: json['reportGroup'] != null
? ReportGroup.fromJson(json['reportGroup'] as Map<String, dynamic>)
: null,
);
}