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