fromReport static method

ReportType? fromReport(
  1. Report report
)

Get the ReportType of a Report.

Implementation

static ReportType? fromReport(Report report) {
  return fromId(report.prefix);
}