GoogleCastMediaRepeatMode enum

Possible states of queue repeat mode.

Inheritance
Available extensions

Values

unchanged → const GoogleCastMediaRepeatMode

A repeat mode indicating that the repeat mode should be left unchanged.

const GoogleCastMediaRepeatMode('UNCHANGED')
off → const GoogleCastMediaRepeatMode

Items are played in order, and when the queue is completed (the last item has ended) the media session is terminated.

const GoogleCastMediaRepeatMode('OFF')
single → const GoogleCastMediaRepeatMode

The current item will be repeated indefinitely.

const GoogleCastMediaRepeatMode('SINGLE')
all → const GoogleCastMediaRepeatMode

The items in the queue will be played indefinitely. When the last item has ended, the first item will be played again.

const GoogleCastMediaRepeatMode('ALL')
allAndShuffle → const GoogleCastMediaRepeatMode

The items in the queue will be played indefinitely. When the last item has ended, the list of items will be randomly shuffled by the receiver, and the queue will continue to play starting from the first item of the shuffled items.

const GoogleCastMediaRepeatMode('ALL_AND_SHUFFLE')

Properties

hashCode int
The hash code for this object.
no setterinherited
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
value String
The value used in the platform channel.
final

Methods

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

Operators

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

Constants

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