belatuk_json_serializer 7.3.0 belatuk_json_serializer: ^7.3.0 copied to clipboard
Easy JSON to Object serialization and deserialization in Dart.
import 'package:belatuk_json_serializer/belatuk_json_serializer.dart' as god;
class A {
String foo;
A(this.foo);
}
class B {
String hello;
late A nested;
B(this.hello, String foo) {
nested = A(foo);
}
}
void main() {
print(god.serialize(B("world", "bar")));
}