ReactiveX / rxdart

The Reactive Extensions for Dart
http://reactivex.io
Apache License 2.0
3.36k stars 272 forks source link

rx.zip and rx.combineLast are not work anymore #725

Open luohao123 opened 1 year ago

luohao123 commented 1 year ago

i have a code previous without nullsafety, but after nullsafety, not work any more

Stream<String> createTask(int? exitsTaskId) {
    debugPrint("createTask called?? ");
    var res = Rx.combineLatest6(
        selectedProject,
        dueDateSelected,
        dueTimeSelected,
        prioritySelected,
        comment,
        repeatedOptionSelected, (Project project,
            int dueDateSelected,
            int dueTimeSelected,
            Status status,
            String comment,
            RepeatedOption repeatedOption) {
      List<int> labelIds = [];

the code inside rx can not be trigger. why