OrmAccessor class

Marks an instance getter or method as an attribute accessor.

Accessors customize how an attribute value is exposed. Prefer annotating a Dart getter for ergonomic access:

@OrmAccessor()
String get fullName => '${getAttribute('first_name')} ${getAttribute('last_name')}';

Provide attribute to override the inferred column name.

Annotations
  • @immutable

Constructors

OrmAccessor({String? attribute})
const

Properties

attribute String?
Column name or attribute key to associate with this accessor.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited