getClientInboxId method
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');
}
}