QueryInflationResponse.deserialize constructor

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

Implementation

factory QueryInflationResponse.deserialize(List<int> bytes) {
  final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
  return QueryInflationResponse(inflation: decode.getBytes<List<int>?>(1));
}