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
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