nativeTypeAttribute property

FieldAttribute? get nativeTypeAttribute

Provider-specific native type attribute such as @db.Text.

Implementation

FieldAttribute? get nativeTypeAttribute {
  for (final attribute in attributes) {
    if (attribute.name.startsWith('db.')) {
      return attribute;
    }
  }

  return null;
}