getUserLCP method

Future<Map<String, dynamic>?> getUserLCP({
  1. required String symbol,
})

Get user's LCP (data refreshes once an hour). https://bybit-exchange.github.io/docs/inverse/#t-lcp

Implementation

Future<Map<String, dynamic>?> getUserLCP({required String symbol}) async {
  log.i('Get user LCP.');
  return await rest.getUserLCP(symbol: symbol);
}