getOrderBookPeriodic method

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

Add a periodic call to the order book REST API. https://bybit-exchange.github.io/docs/inverse/?console#t-orderbook

Implementation

void getOrderBookPeriodic(
    {required String symbol, required Duration period}) {
  log.i('Add a periodic call to the order book REST API.');
  rest.getOrderBookPeriodic(symbol: symbol, period: period);
}