BusinessReportRecurrence.fromJson constructor

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

Implementation

factory BusinessReportRecurrence.fromJson(Map<String, dynamic> json) {
  return BusinessReportRecurrence(
    startDate: json['StartDate'] as String?,
  );
}