Flutter – Is it good approach to have an interface for Usecases?
I've created an interface for my use cases that returns a Future, Is it good approach to have an interface for all use cases? What if I need a Usecase to return Streams instead of a single return (Future), for…