objectify

Last updated:

0 purchases

objectify Image
objectify Images
Add to Cart

Description:

objectify

Objectify #
Turn any Map into your class object
QuickStart #

import "objectify/objectify.dart" as obj;

@Objectify()
class NestedModel {
String? yay;
int? nested;
}

@Objectify()
class SomeModel {
bool? foo;
String? bar;
NestedModel nested;
}

void main() {
final data = {}; // your data
final model = obj.deserialize<SomeModel>(data);
// OR
final model2 = obj.deserialize(data, SomeModel);
// They are actually the same!
}

copied to clipboard
NOTICE #
this package uses dart:mirrors, which means you will not be able to use AOT!

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.