BookSearch
BookSearch copied to clipboard
Error: The method 'retype' isn't defined for the class 'Stream<T>
Error: The method 'retype' isn't defined for the class 'Stream<T>
same issue here, tried to change version of rxdart to 0.22.0 and also had to add reference to http in the yaml file which got on to the code, but then all the debounce lines fails :
https://i.imgur.com/v3C2rYj.png
anyone knows whats going on ?
Found it :
- had to add reference to http
- change version on rxdart to 0.22.0
change all lines where it uses debounce to debounceTime :
.debounce(new Duration(milliseconds: 600))
use : .debounceTime(new Duration(milliseconds: 600))
unfortunately i dont know how to send the updated code to github, but i got it working after these changes.