-
Can we store List field to the Model and store it to NyStorage(Not collection) ? Or may be List<Map<String,String>> for the next release? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hi @andim27, Have you got an example? At the moment, you can store User userOne = User();
userOne.addToCollection('key');
User userTwo = User();
userTwo.addToCollection('key');
await NyStorage.readCollection('key'); // [User, User] Thanks, |
Beta Was this translation helpful? Give feedback.
-
No, I mean fields of User. Now it can be String, int, double. Can we add List type? |
Beta Was this translation helpful? Give feedback.
-
When the following is scheduled to be released? |
Beta Was this translation helpful? Give feedback.
Hi @andim27,
Have you got an example?
At the moment, you can store
Model
's to a collection like:Thanks,