history method
Get transaction history for this token
Implementation
Future<TxHistoryPage> history({int page = 0, int pageSize = 10}) async {
final data = await proxy.get(
'/token-id/$tokenId/history?page=$page&page_size=$pageSize',
);
final historyPage = _decodeProto(data, () => pb.TxHistoryPage());
return TxHistoryPage.fromProto(historyPage);
}