json_serializable.dart icon indicating copy to clipboard operation
json_serializable.dart copied to clipboard

Generates utilities to aid in serializing to/from JSON.

Results 161 json_serializable.dart issues
Sort by recently updated
recently updated
newest added

Kotlin's JSON serialization library(`kotlinx.serialization`) supports the value class in the following way: Code: ```kotlin @Serializable @JvmInline value class Color(val rgb: Int) @Serializable data class NamedColor(val color: Color, val name: String)...