QueryTotalTimeoutFeesResponse.deserialize constructor

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

Implementation

factory QueryTotalTimeoutFeesResponse.deserialize(List<int> bytes) {
  final decode = CosmosProtocolBuffer.decode(bytes);
  return QueryTotalTimeoutFeesResponse(
      timeoutFees:
          decode.getFields(1).map((e) => Coin.deserialize(e)).toList());
}