belatuk_json_serializer 7.0.0-beta.1 copy "belatuk_json_serializer: ^7.0.0-beta.1" to clipboard
belatuk_json_serializer: ^7.0.0-beta.1 copied to clipboard

Easy JSON to Object serialization and deserialization in Dart.

example/main.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")));
}
2
likes
0
pub points
26%
popularity

Publisher

verified publisherdukefirehawk.com

Easy JSON to Object serialization and deserialization in Dart.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

logging

More

Packages that depend on belatuk_json_serializer