BusinessReportContentRange.fromJson constructor

BusinessReportContentRange.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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