getUserLCPPeriodic method
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.d('ByBitRest.getUserLCPPeriodic');
streamGroup!.add(Stream.periodic(period, (_) {
return getUserLCP(symbol: symbol);
}).asyncMap((event) async => await event));
}