getContext abstract method

Represents a summary of the reflection scan process, containing diagnostics and metadata such as build time and scanning context.

This is useful for debugging and analyzing what was discovered or failed during reflection-based scanning.

Example

void printScanSummary(RuntimeScannerSummary summary) {
  print('Build Time: ${summary.getBuildTime()}');
  print('Errors: ${summary.getErrors()}');
  print('Warnings: ${summary.getWarnings()}');
  print('Info: ${summary.getInfos()}');
}

Implementation

ConfigurableRuntimeProvider getContext();