isFinal abstract method
Returns true if the field is final.
Example
final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.isFinal())); // [true]
Implementation
bool isFinal();
Returns true if the field is final.
final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.isFinal())); // [true]
bool isFinal();