fromWire static method

Delta fromWire(
  1. Object? value
)

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),
  );
}