getAccountTransactions method
Implementation
Future<dynamic> getAccountTransactions({DateTime? dateFrom, DateTime? dateTo}) async {
final Map<String, dynamic> params = {};
if (dateFrom != null) params['date_from'] = dateFrom;
if (dateTo != null) params['date_to'] = dateTo;
final response = await requestHandler.get(
"accounts/$accountId/transactions/",
queryParameters: params
);
return response;
}