Patchset.fromBytes constructor

Patchset.fromBytes(
  1. Uint8List bytes,
  2. CommonSqlite3 bindings
)

Creates a patch set from the underlying serialized byte representation.

Implementation

factory Patchset.fromBytes(Uint8List bytes, CommonSqlite3 bindings) {
  return PatchsetImplementation(
      bytes, (bindings as Sqlite3Implementation).bindings);
}