getBlockIdFromList function

BlockId getBlockIdFromList(
  1. List<int> blockIdList
)

Returns a BlockId object for the block at the given blockIdList.

Implementation

BlockId getBlockIdFromList(List<int> blockIdList) {
  return BlockId(
    value: blockIdList,
  );
}