closedConversationsListLength property

RxInt get closedConversationsListLength

Implementation

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