setCustomVirtualBackgroundImagePaths method

void setCustomVirtualBackgroundImagePaths(
  1. List<String> imagePaths
)

Implementation

void setCustomVirtualBackgroundImagePaths(List<String> imagePaths) {
  setCustomVirtualBackgroundImages(
    imagePaths
        .map((imagePath) => TCICVirtualBackgroundImage(imagePath: imagePath))
        .toList(),
  );
}