ColorCodec class

ColorCodec

~Preset Codec for Color. See PresetCodec.

encode(Color obj) {
  final type1 = qColor.encode(obj);
  final type2 = ColorCodec().encode(obj);
}
Inheritance

Constructors

ColorCodec()
const

Properties

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

Methods

decode(Map<String, dynamic>? data) Color?
Revert an encoded map of String to json encodable objects to an instance of T. Return null if data is null or conversion fails.
override
encode(Color? obj) Map<String, dynamic>
Convert obj of type T to a map of String to json encodable objects. Can only be called once for each object in data heap.
override
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