injectable icon indicating copy to clipboard operation
injectable copied to clipboard

Need to inject Abstract classes

Open ajinkya446 opened this issue 2 years ago • 0 comments

abstract class StarWarsRepository { /// Handling Functional error operation using Either while collecting the movies data from local storage Future<Either<Failure, StarWarMoviesModel>> collectMoviesListFromLocal();

/// Handling Functional error operation using Either while collecting the movies data from API Future<Either<Failure, StarWarMoviesModel>> collectMoviesListFromAPI(String url); }

This is my abstract class and need to inject and use this in my DI

ajinkya446 avatar Jul 15 '22 04:07 ajinkya446