MovieSearchService class
A service class that handles movie search operations.
Constructors
- MovieSearchService.new(NetworkClient _client)
- Creates a new MovieSearchService instance.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
searchMovies(
String query) → Future< List< Movie> > - Searches for movies matching the given query.
-
searchMoviesByActor(
String actorName) → Future< List< Movie> > - Searches for movies by actor/person name.
-
searchMoviesByGenre(
String genreName) → Future< List< Movie> > - Searches for movies by genre name.
-
searchMoviesComprehensive(
String query) → Future< Map< String, List< >Movie> > - Comprehensive search that searches by title, actor, and genre.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited