QueryTxDistributionResponse.deserialize constructor

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

Implementation

factory QueryTxDistributionResponse.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryTxDistributionResponse(
    distribution: decode.getMap<String, BigInt>(1),
  );
}