BusinessReportContentRange.fromJson constructor
Implementation
factory BusinessReportContentRange.fromJson(Map<String, dynamic> json) {
return BusinessReportContentRange(
interval: (json['Interval'] as String).toBusinessReportInterval(),
);
}