fromWire static method

ResyncRequest fromWire(
  1. Object? value
)

Implementation

static ResyncRequest fromWire(Object? value) {
  final obj = _asObject(value, 'ResyncRequest');
  return ResyncRequest(fromEpoch: _reqInt(obj, 'from_epoch'));
}