getServerTime method

Future<Map<String, dynamic>?> getServerTime()

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

Implementation

Future<Map<String, dynamic>?> getServerTime() async {
  log.i('Get server time.');
  return await rest.getServerTime();
}