getApiKeyInfo method

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

Implementation

Future<Map<String, dynamic>?> getApiKeyInfo() async {
  log.d('ByBitRest.getApiKeyInfo');
  return await request(
      path: '/v2/private/account/api-key',
      type: 'GET',
      withAuthentication: true);
}