isar
isar copied to clipboard
Extremely fast, easy to use, and fully async NoSQL database for Flutter
### Steps to Reproduce I have a constructor for my collection where I can pass in nullable (optional) parameters for the fields and use the initializer list to create a...
### Steps to Reproduce Please describe exactly how to reproduce the problem you are running into. 1. define a table with two fields: one is an enumeration type and the...
### Steps to Reproduce Please describe exactly how to reproduce the problem you are running into. 1. define a table with a field of List hashElements index type 2. generate...
I'm deeply frustrated that there seems lack of a documentation on error handling, e.g Isar should throw **unique error** when trying to write a record with duplicated column and there...
**Is your feature request related to a problem? Please describe.** I can not find this in the documentation so my guess is that it does not exist yet, So like...
i created this collection for `Isar`: ``` @collection class SearchTableCollection { Id? id = Isar.autoIncrement; @enumerated late SearchTermType searchTermType; late String term; late int clicked; } enum SearchTermType { menu(1),...
In version 3 TypeConverters were removed in favor of embedded objects. Embedded objects are nice, but they do not replace type converters 100%. For example it would be handy to...
### Steps to Reproduce openSync fails during app start, but only on Android API 30 emulator. It works fine on API 29, API 31 or API 33. None other Isar...