putAllKt method

Future<KtList<int>> putAllKt(
  1. KtList<OBJ> objects, {
  2. bool replaceOnConflict = false,
  3. bool saveLinks = false,
})

Insert or update a list of objects and returns the list of assigned ids.

Implementation

Future<KtList<int>> putAllKt(
  KtList<OBJ> objects, {
  bool replaceOnConflict = false,
  bool saveLinks = false,
}) =>
    putAll(objects.asList()).then((list) => list.toImmutableList());