getMonthsCandles method

Future<List<MonthsCandle>> getMonthsCandles({
  1. required String market,
  2. String? to,
  3. int? count,
})

Implementation

Future<List<MonthsCandle>> getMonthsCandles({required String market, String? to, int? count}) {
  return getMonthsCandlesWithClient(apiClient, market: market, to: to, count: count);
}