Account_AccountReports method

Future<Map> Account_AccountReports({
  1. String? last,
  2. String? from_date,
  3. String? to_date,
  4. String? apiKey,
})

Get reports of your account (default last 7 days)

Implementation

Future<Map> Account_AccountReports({
  String? last,
  String? from_date,
  String? to_date,
  String? apiKey,
}) async {
  return await getAccountReports(
    last: last,
    from_date: from_date,
    to_date: to_date,
    apiKey: apiKey,
  );
}