getRiskLimit method

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

Implementation

Future<Map<String, dynamic>?> getRiskLimit() async {
  log.d('ByBitRest.getRiskLimit');
  return await request(
      path: '/open-api/wallet/risk-limit/list',
      type: 'GET',
      withAuthentication: true);
}