getBalanceReport method
Future<List<TransactionModel> >
getBalanceReport(
- String userId,
- String currency,
- String startDate,
- String endDate,
- String group,
- bool includePrevious,
- bool includeToday, [
- Config? config,
override
Implementation
@override
Future<List<TransactionModel>> getBalanceReport(
String userId,
String currency,
String startDate,
String endDate,
String group,
bool includePrevious,
bool includeToday,
[Config? config]) async {
config ??= CONFIG!;
return fetchBalanceReport(userId, currency, startDate, endDate, group,
includePrevious, includeToday, config);
}