Package com.example.examer.data.domain.serializers

Types

Link copied to clipboard
class LocalDateTimeSerializer : KSerializer<LocalDateTime>

A serializer for an instance of LocalDateTime. The instance will be serialized by converting it to its corresponding milliseconds value. It will be deserialized by converting the milliseconds value into a LocalDateTime object.

Link copied to clipboard
class UriSerializer : KSerializer<Uri>

A serializer for an instance of Uri. The instance will be serialized by encoding it as a String. It will be deserialized by parsing the string to a Uri object.