AnimatedEmojiCacheMode enum
An enum describing the cache used for an emoji.
Values
- none → const AnimatedEmojiCacheMode
-
Do not use any caching.
- raster → const AnimatedEmojiCacheMode
-
The frames stored in the cache are fully rasterized. This is the most efficient to render but will use the most memory.
- drawingCommands → const AnimatedEmojiCacheMode
-
The frames are stored as dart:ui.Picture in the cache. It will will spare the CPU work for each frame. The GPU work will be the same as without cache.
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
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<
AnimatedEmojiCacheMode> - A constant List of the values in this enum, in order of their declaration.