getServerTime method
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.d('ByBitRest.getServerTime');
return await request(path: '/v2/public/time', type: 'GET');
}