ChangesetOperation class final

A recorded operation on a changeset.

Constructors

ChangesetOperation({required String table, required int columnCount, required SqliteUpdateKind operation, required List<Object?>? oldValues, required List<Object?>? newValues})

Properties

columnCount → int
The amount of columns in the table, which equals the List.length of oldValues and newValues.
final
hashCode → int
The hash code for this object.
no setterinherited
newValues → List<Object?>?
If operation is not SqliteUpdateKind.delete, a list of values in the row after the operation.
final
oldValues → List<Object?>?
If operation is not SqliteUpdateKind.insert, a list of values in the row before the operation.
final
operation → SqliteUpdateKind
The type of update made.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
table → String
Name of the table affected by the operation.
final

Methods

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

Operators

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