angel3_json_god 4.0.1 copy "angel3_json_god: ^4.0.1" to clipboard
angel3_json_god: ^4.0.1 copied to clipboard

discontinuedreplaced by: belatuk_json_serializer
outdated

Easy JSON serialization and deserialization in Dart.

example/main.dart

import 'package:angel3_json_god/angel3_json_god.dart' as god;

class A {
  String foo;
  A(this.foo);
}

class B {
  late String hello;
  late A nested;
  B(String hello, String foo) {
    this.hello = hello;
    this.nested = A(foo);
  }
}

void main() {
  print(god.serialize(B("world", "bar")));
}
0
likes
0
points
22
downloads

Publisher

verified publisherdukefirehawk.com

Weekly Downloads

Easy JSON serialization and deserialization in Dart.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

logging

More

Packages that depend on angel3_json_god