Series class

Constructors

Series(int id, String _name, String _author, String _description, int _numberOfVolumes, String _publisher, String _language, String _genre, String _ageRating, String _type, List<String> _locked, CacheController _cacheController, KuebikoHttpClient _httpClient)

Properties

hashCode int
The hash code for this object.
no setterinherited
id int
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

books(BookSorting sorting, SortingDirection direction) Future<List<Book>>
getAgeRating() String
getAuthor() String
getDescription() String
getGenre() String
getLanguage() String
getName() String
getNumberOfVolumes() int
getPublisher() String
getType() String
lockAgeRating() Series
lockAuthor() Series
lockDescription() Series
lockGenre() Series
lockLanguage() Series
lockName() Series
lockNumberOfVolumes() Series
lockPublisher() Series
lockType() Series
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setAgeRating(String ageRating) Series
setAuthor(String author) Series
setDescription(String description) Series
setGenre(String genre) Series
setLanguage(String language) Series
setName(String name) Series
setNumberOfVolumes(int numberOfVolumes) Series
setPublisher(String publisher) Series
setType(String type) Series
toString() String
A string representation of this object.
inherited
unlockAgeRating() Series
unlockAuthor() Series
unlockDescription() Series
unlockGenre() Series
unlockLanguage() Series
unlockName() Series
unlockNumberOfVolumes() Series
unlockPublisher() Series
unlockType() Series
update() → void

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

create({required String name, required String author, required String description, required int numberOfVolumes, required String publisher, required String language, required String genre, required String ageRating, required String type, required List<String> locked, required CacheController cacheController, required KuebikoHttpClient httpClient}) Future<Series>
getAll(CacheController cacheController, KuebikoHttpClient httpClient) Future<List<Series>>