MovieBase class

Implementers

Constructors

MovieBase({required int id, required String originalLanguage, String? backdropPath, String? posterPath, String? overview, List<int> genreIds = const [], num? popularity, int? voteCount, num? voteAverage, bool? adult, Date? releaseDate, String? originalTitle, String? title, bool video = false})
MovieBase.fromJson(Map<String, dynamic> map, AssetResolver assetResolver)
factory

Properties

adult bool
final
backdropPath String?
finalinherited
genreIds List<int>
finalinherited
hashCode int
The hash code for this object.
no setterinherited
id int
finalinherited
originalLanguage String
finalinherited
originalTitle String?
final
overview String?
finalinherited
popularity num
finalinherited
posterPath String?
finalinherited
releaseDate Date?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String
final
video bool
final
voteAverage num
finalinherited
voteCount int
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

listFromJson(List list, AssetResolver assetResolver) List<MovieBase>