TextThemeCodec class

TextThemeCodec

~Preset Codec for TextTheme. See PresetCodec.

encode(TextTheme obj) {
  final type1 = qTextTheme.encode(obj);
  final type2 = TextThemeCodec().encode(obj);
}
Inheritance

Constructors

TextThemeCodec()
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) TextTheme?
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(TextTheme? 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