getReporter method
Returns a reporter for the given name. Use the reporter
to convert analysis reports to console, JSON or other supported format.
Implementation
Reporter<UnusedCodeFileReport, UnusedCodeReportParams>? getReporter({
  required String name,
  required IOSink output,
}) =>
    reporter(
      name: name,
      output: output,
    );