belatuk_json_serializer 7.1.0 copy "belatuk_json_serializer: ^7.1.0" to clipboard
belatuk_json_serializer: ^7.1.0 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
140
pub points
25%
popularity

Publisher

verified publisherdukefirehawk.com

Easy JSON to Object serialization and deserialization in Dart.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

logging

More

Packages that depend on belatuk_json_serializer