readTransactions method
Future<(UResponse<UGoldTransactionListResponse> ?, UEmptyResponse?, String?)>
readTransactions({
- required UGoldReadTransactionsParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UGoldTransactionListResponse>?, UEmptyResponse?, String?)> readTransactions({
required UGoldReadTransactionsParams p,
Function(UResponse<UGoldTransactionListResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Gold/ReadTransactions", p.toMap(), _Api.one(UGoldTransactionListResponse.fromMap), _Api.empty, onOk, onError, onException);