Changeset.fromBytes constructor
Changeset.fromBytes(
- Uint8List bytes,
- CommonSqlite3 bindings
Creates a changeset from the underlying serialized byte representation.
Implementation
factory Changeset.fromBytes(Uint8List bytes, CommonSqlite3 bindings) {
return ChangesetImplementation(
bytes,
(bindings as Sqlite3Implementation).bindings,
);
}