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

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

Publisher

verified publisherokaryo.io

Dart package that provides class serialization to json.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on jsoniser