KtIsarCollection<OBJ> extension

Extension to return KtList instead of List for IsarCollection objects

on

Methods

deleteAllKt(KtList<int> ids) Future<int>
Delete a list of objecs by their ids.
deleteAllKtSync(KtList<int> ids) int
Delete a list of objecs by their ids.
getAllKt(KtList<int> ids) Future<KtList<OBJ?>>
Get a list of objects by their ids or null if an object does not exist.
getAllKtSync(KtList<int> ids) → KtList<OBJ?>
Get a list of objects by their ids or null if an object does not exist.
importJsonKt(KtList<KtMap<String, OBJ?>> json, {bool replaceOnConflict = false}) Future<void>
Import a list of json objects.
importJsonSyncKt(KtList<KtMap<String, OBJ?>> json, {bool replaceOnConflict = false}) → void
Import a list of json objects.
putAllKt(KtList<OBJ> objects, {bool replaceOnConflict = false, bool saveLinks = false}) Future<KtList<int>>
Insert or update a list of objects and returns the list of assigned ids.
putAllKtSync(KtList<OBJ> objects, {bool replaceOnConflict = false, bool saveLinks = false}) → KtList<int>
Insert or update a list of objects and returns the list of assigned ids.