serialize library

Classes

Serializable
An interface to force implement serialization.

Typedefs

Deserialize<T extends Object?> = T Function(Json json)
Alias for function that converts a map in to an object.
Json = Map<String, Object?>
Serialize<T extends Object?> = Json Function(T item)
Alias for function that converts a object in to an map.