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
120
pub points
0%
popularity

Publisher

verified publisherdukefirehawk.com

Easy JSON to Object serialization and deserialization in Dart.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

logging

More

Packages that depend on angel3_json_god