bool isFinal

Source

@override
bool get isFinal {
  /// isFinal returns true for the field even if it has an explicit getter
  /// (which means we should not document it as "final").
  if (hasExplicitGetter) return false;
  return _field.isFinal;
}