fromWire static method
Implementation
static WireStamp fromWire(Object? value) {
final obj = _asObject(value, 'WireStamp');
return WireStamp(
wallTime: _reqInt(obj, 'wall_time'),
logical: _reqInt(obj, 'logical'),
peer: _reqInt(obj, 'peer'),
);
}