getAllKtSync method

KtList<OBJ?> getAllKtSync(
  1. KtList<int> ids
)

Get a list of objects by their ids or null if an object does not exist.

Implementation

KtList<OBJ?> getAllKtSync(KtList<int> ids) =>
    getAllSync(ids.asList()).toImmutableList();