Last updated:
0 purchases
jsoniser
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}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.