Changeset.fromBytes constructor

Changeset.fromBytes(
  1. Uint8List bytes,
  2. 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,
  );
}