DriftView class
An annotation specifying view properties
- Annotations
-
- @Target({TargetKind.classType})
Constructors
Properties
- dataClassName → String?
-
The name for the data class that will be generated for the view class.
The data class is a dart object that will be used to represent a result of
the view.
{@template drift_custom_data_class}
By default, drift will attempt to use the view name followed by "Data"
when naming data classes (e.g. a view named "UserView" will generate a
data class called "UserViewData").
By default, drift will attempt to use the singular form of the table name
when naming data classes (e.g. a table named "Users" will generate a data
class called "User"). However, this doesn't work for irregular plurals and
you might want to choose a different name, for which this annotation can be
used.
final
- extending → Type?
-
The parent class of generated data class. Class must extends DataClass!
final
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- name → String?
-
The sql view name to be used. By default, drift will use the snake_case
representation of your class name as the sql view name. For instance, a
View class named
UserView
will be calleduser_view
by default.final - runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
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