ReportCenterWidget constructor

const ReportCenterWidget({
  1. Key? key,
  2. required String businessId,
  3. required ReportSettings settings,
  4. required dynamic onReportSelected(
    1. Report report
    ),
})

Implementation

const ReportCenterWidget({
  super.key,
  required this.businessId,
  required this.settings,
  required this.onReportSelected,
});