holdInvoiceStateStream property

Stream<NwcNotification> get holdInvoiceStateStream

Implementation

Stream<NwcNotification> get holdInvoiceStateStream =>
    notificationStream.stream
        .where((notification) => notification.isHoldInvoiceAccepted)
        .asBroadcastStream();