d_serializer library
Public exports for d_serializer.
Classes
- Format
- Field-level formatter configuration.
- JsonKey
- Field-level serialization customizations.
- Serializable
-
Marks a class as serializable by
d_serializer_builder. - Serializer
- Static JSON serializer with type registration.
Enums
- JsonNaming
- Naming policy applied to generated JSON keys.
Constants
- serializable → const Serializable
Typedefs
-
JsonEncoder<
T> = Map< String, dynamic> Function(T value) -
Serializes an instance of
Tinto a JSON map. -
JsonFactory<
T> = T Function(Map< String, dynamic> json) -
Deserializes a map into an instance of
T.