jsoniser

Last updated:

0 purchases

jsoniser Image
jsoniser Images
Add to Cart

Description:

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.