OsmosisLockupAccountLockedLongerDurationNotUnlockingOnlyRequest.deserialize constructor

OsmosisLockupAccountLockedLongerDurationNotUnlockingOnlyRequest.deserialize(
  1. List<int> bytes
)

Implementation

factory OsmosisLockupAccountLockedLongerDurationNotUnlockingOnlyRequest.deserialize(
    List<int> bytes) {
  final decode = CosmosProtocolBuffer.decode(bytes);
  return OsmosisLockupAccountLockedLongerDurationNotUnlockingOnlyRequest(
      owner: decode.getField(1),
      duration: ProtobufDuration.deserialize(decode.getField(2)));
}