jsoniser 0.0.1 copy "jsoniser: ^0.0.1" to clipboard
jsoniser: ^0.0.1 copied to clipboard

discontinued
SDKDart

Dart package that provides class serialization to json.

Test and Lint

jsoniser #

Dart package that provides class serialization to json.

Usage #

class User with Jsoniser {
  final string name;
  final int age;

  const User(this.name, this.age);
}

final user = User('okaryo', 100);
print(user.toJson());
// {'name': 'okaryo', 'age': 100}
2
likes
140
points
17
downloads

Publisher

verified publisherokaryo.io

Weekly Downloads

Dart package that provides class serialization to json.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on jsoniser