paymentsSentStream property

Stream<NwcNotification> get paymentsSentStream

Implementation

Stream<NwcNotification> get paymentsSentStream => notificationStream.stream
    .where((notification) => notification.isPaymentSent)
    .asBroadcastStream();