isFinal abstract method

bool isFinal()

Returns true if the field is final.

Example

final annotation = ...;
final fields = annotation.getFields();
print(fields.map((f) => f.isFinal())); // [true]

Implementation

bool isFinal();