Column<T> class
A database column.
An example:
final ratingColumn = database.collection('recipes').column('rating');
- Implemented types
Constructors
- Column()
- Column.fromCollection(Collection collection, String propertyName)
-
factory
Properties
- collection → Collection
-
read-only
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
-
length
→ Future<
int> -
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
ascending(
) → ColumnQueryHelper< T> -
inherited
-
descending(
) → ColumnQueryHelper< T> -
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
skip(
int n) → ColumnQueryHelper< T> -
inherited
-
take(
int n) → ColumnQueryHelper< T> -
inherited
-
toList(
) → Future< List< T> > -
inherited
-
toStream(
) → Stream< T> -
inherited
-
toString(
) → String -
A string representation of this object. [...]
inherited
-
where(
bool f(T)) → ColumnQueryHelper< T> -
inherited
-
whereEqual(
T value) → ColumnQueryHelper< T> -
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited