getUserLCPPeriodic method

void getUserLCPPeriodic({
  1. required String symbol,
  2. required Duration period,
})

Get user's LCP (data refreshes once an hour) periodically. https://bybit-exchange.github.io/docs/inverse/#t-lcp

Implementation

void getUserLCPPeriodic({required String symbol, required Duration period}) {
  log.i('Get user LCP periodically.');
  rest.getUserLCPPeriodic(symbol: symbol, period: period);
}