pendingConversationsListLength property

RxInt get pendingConversationsListLength

Implementation

RxInt get pendingConversationsListLength =>
    _conversationsService.allConversationsList
        .where((convo) => (convo.status == 'pending'))
        .toList()
        .length
        .obs;