getInstance abstract method
dynamic
getInstance()
Returns the instance of the annotation.
This allows inspection of the annotation's instance, including its fields and methods.
Example
final annotation = ...;
final instance = annotation.getInstance();
print(instance.toString());
Implementation
dynamic getInstance();