getStoredImagePath method

String? getStoredImagePath(
  1. int imageId
)

Get the file path for a stored image by ID.

Implementation

String? getStoredImagePath(int imageId) {
  return _storedImagePaths[imageId];
}