Patchset.fromBytes constructor
Patchset.fromBytes(
- Uint8List bytes,
- 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);
}