getValue abstract method

dynamic getValue()

Returns the value of the field.

Example

final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.getValue())); // ["value"]

Implementation

dynamic getValue();