NetCoreSyncKnowledges class

The table class used by the framework to keep track of the server's timestamp.

This table class should be included in the @UseMoor's tables list. For example:

@UseMoor(
  tables: [
    // ...some table classes here...
    NetCoreSyncKnowledges,
  ],
)
class Database extends _$Database
    with NetCoreSyncClient, NetCoreSyncClientUser {
// ... class code here ...
}

After it is included, no further action is necessary, the framework will utilize it as needed.

Annotations
  • @UseRowClass(NetCoreSyncKnowledge, constructor: "fromDb")

Constructors

NetCoreSyncKnowledges()

Properties

customConstraints List<String>
Custom table constraints that should be added to the table.
no setterinherited
dontWriteConstraints bool
Drift will write some table constraints automatically, for instance when you override primaryKey. You can turn this behavior off if you want to. This is intended to be used by generated code only.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
id → TextColumn
no setter
isStrict bool
Whether this table is STRICT.
no setterinherited
lastTimeStamp → IntColumn
no setter
local → BoolColumn
no setter
meta → TextColumn
no setter
primaryKey Set<Column>
Override this to specify custom primary keys:
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
syncId → TextColumn
no setter
tableName String?
The sql table name to be used. By default, drift will use the snake_case representation of your class name as the sql table name. For instance, a Table class named LocalSettings will be called local_settings by default. You can change that behavior by overriding this method to use a custom name. Please note that you must directly return a string literal by using a getter. For instance @override String get tableName => 'my_table'; is valid, whereas @override final String tableName = 'my_table'; or @override String get tableName => createMyTableName(); is not.
no setter
uniqueKeys List<Set<Column>>?
Unique constraints in this table.
no setterinherited
withoutRowId bool
Whether to append a WITHOUT ROWID clause in the CREATE TABLE statement. This is intended to be used by generated code only.
no setterinherited

Methods

blob() → ColumnBuilder<Uint8List>
Use this as the body of a getter to declare a column that holds arbitrary data blobs, stored as an Uint8List. Example:
inherited
boolean() → ColumnBuilder<bool>
Use this as the body of a getter to declare a column that holds bools. Example (inside the body of a table class):
inherited
dateTime() → ColumnBuilder<DateTime>
Use this as the body of a getter to declare a column that holds date and time. Note that DateTime values are stored on a second-accuracy. Example (inside the body of a table class):
inherited
int64() → ColumnBuilder<BigInt>
Use this as the body of a getter to declare a column that holds a 64-big integer as a BigInt.
inherited
integer() → ColumnBuilder<int>
Use this as the body of a getter to declare a column that holds integers.
inherited
intEnum<T>() → ColumnBuilder<int>
Creates a column to store an enum class T.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
real() → ColumnBuilder<double>
Use this as the body of a getter to declare a column that holds floating point numbers. Example
inherited
text() → ColumnBuilder<String>
Use this as the body of a getter to declare a column that holds strings. Example (inside the body of a table class):
inherited
toString() String
A string representation of this object.
inherited

Operators

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