getClientInboxId method

  1. @override
Future<String?> getClientInboxId()
override

Implementation

@override
Future<String?> getClientInboxId() async {
  try {
    final result = await _promiseToFuture(
      _clientManager.getClientInboxId(),
    );
    return (result as JSString?)?.toDart;
  } catch (e) {
    throw Exception('Failed to get client inbox ID: $e');
  }
}