fromWire static method
Implementation
static Delta fromWire(Object? value) {
final obj = _asObject(value, 'Delta');
return Delta(
baseEpoch: _reqInt(obj, 'base_epoch'),
epoch: _reqInt(obj, 'epoch'),
ops: _objList(obj, 'ops', DeltaOp.fromWire),
);
}