getWalletFundRecords method

Future<Map<String, dynamic>?> getWalletFundRecords({
  1. String? currency,
  2. int? startTimestamp,
  3. int? endTimestamp,
  4. String? walletFundType,
  5. int? page,
  6. int? limit,
})

Implementation

Future<Map<String, dynamic>?> getWalletFundRecords(
    {String? currency,
    int? startTimestamp,
    int? endTimestamp,
    String? walletFundType,
    int? page,
    int? limit}) async {
  log.i('Get wallet fund records.');
  return await rest.getWalletFundRecords(
      currency: currency,
      startTimestamp: startTimestamp,
      endTimestamp: endTimestamp,
      walletFundType: walletFundType,
      page: page,
      limit: limit);
}