getServerTimePeriodic method

void getServerTimePeriodic(
  1. {required Duration period}
)

Get the server time (used for synchronization purposes for example) periodically. https://bybit-exchange.github.io/docs/inverse/?console#t-servertime

Implementation

void getServerTimePeriodic({required Duration period}) {
  log.i('Get server time periodically.');
  rest.getServerTimePeriodic(period: period);
}