StatoLibro enum

Enum che rappresenta lo stato di un libro nella libreria. Ogni stato ha un titolo descrittivo e un'icona associata.

Inheritance
Available extensions

Values

daLeggere → const StatoLibro

Libro da leggere.

const StatoLibro('Da leggere')
inLettura → const StatoLibro

Libro attualmente in lettura.

const StatoLibro('In lettura')
letto → const StatoLibro

Libro giĆ  letto.

const StatoLibro('Letto')
abbandonato → const StatoLibro

Libro abbandonato.

const StatoLibro('Abbandonato')
daAcquistare → const StatoLibro

Libro da acquistare.

const StatoLibro('Da acquistare')

Properties

hashCode int
The hash code for this object.
no setterinherited
icona IconData
Restituisce l'icona associata allo stato del libro.
no setter
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
titolo String
Titolo descrittivo dello stato.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Restituisce il titolo descrittivo dello stato.
override

Operators

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

Constants

values → const List<StatoLibro>
A constant List of the values in this enum, in order of their declaration.