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

discontinuedreplaced by: belatuk_json_serializer
SDKDart

Easy JSON to Object 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
140
points
46
downloads

Publisher

verified publisherdukefirehawk.com

Weekly Downloads

Easy JSON to Object serialization and deserialization in Dart.

Documentation

API reference

License

MIT (license)

Dependencies

logging

More

Packages that depend on angel3_json_god