activeConversationsListLength property

RxInt get activeConversationsListLength

Implementation

RxInt get activeConversationsListLength =>
    _conversationsService.allConversationsList
        // .where((convo) => (convo.status == 'opened'))
        .toList()
        .length
        .obs;