InterfaceMapperBase<T extends Object> class abstract

The common mapper interface for class and record mappers.

See also ClassMapperBase and RecordMapper.

Inheritance
Implementers

Constructors

InterfaceMapperBase()
const

Properties

fields MappableFields<T>
The set of fields this interface defines.
no setter
hashCode int
The hash code for this object.
no setterinherited
hook MappingHook?
The optional mapping hook defined for this interface.
no setter
id String
A unique id for this type, defaults to the name of the type.
no setterinherited
ignoreNull bool
Whether to ignore null values when encoding the fields of this interface.
no setter
instantiate Function
The instantiate method to create a new instance of this interface.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type Type
A getter for the type of this mapper.
no setterinherited
typeFactory Function
A type factory is what makes generic types work.
no setterinherited

Methods

decode(Object? value, DecodingContext context) → T
decodeJson<V>(String json) → V
decodeMap<V>(Map<String, dynamic> map) → V
decoder(Object? value, DecodingContext context) → T
The mapping method to decode value to an instance of this mappers type.
override
decodeValue<V>(Object? value, [DecodingOptions? options, MapperContainer? container]) → V
inherited
encode(T value, EncodingContext context) Object?
encodeJson<V>(V object, [EncodingOptions? options]) String
encodeMap<V>(V object, [EncodingOptions? options]) Map<String, dynamic>
encoder(T value, EncodingContext context) Object?
The mapping method to encode value to a serializable value.
override
encodeValue<V>(V value, [EncodingOptions? options, MapperContainer? container]) Object?
inherited
equals(T value, T other, MappingContext context) bool
The mapping method to compare value and other for equality.
inherited
equalsValue(T value, Object? other, [MapperContainer? container]) bool
inherited
hash(T value, MappingContext context) int
The mapping method to calculate the hash of value.
inherited
hashValue(T value, [MapperContainer? container]) int
inherited
includeTypeId<V>(dynamic v) bool
override
isFor(dynamic v) bool
inherited
isForType(Type type) bool
inherited
isValueEqual(T value, Object? other, [MapperContainer? container]) bool
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
stringify(T value, MappingContext context) String
The mapping method to get the string representation of value.
inherited
stringifyValue(T value, [MapperContainer? container]) String
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

encodeFields<T extends Object>(T value, Iterable<Field<T, dynamic>> fields, bool ignoreNull, EncodingContext context) Map<String, dynamic>