RuntimeScannerSummary class abstract interface

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()}');
}

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getBuildTime() DateTime
Returns the timestamp when the scan completed.
getContext() ConfigurableRuntimeProvider
Represents a summary of the reflection scan process, containing diagnostics and metadata such as build time and scanning context.
getErrors() List<String>
A list of error messages encountered during the scan.
getGeneratedFiles() Map<String, String>
Returns the list of dart files generated during the scan.
getInfos() List<String>
Informational messages collected during the scan.
getWarnings() List<String>
A list of non-critical warnings during the reflection scan.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited