getMovieFilePath method

String? getMovieFilePath(
  1. Movie movie
)

Gets the file path for a movie file (used for sharing). This is only relevant for POD storage.

Implementation

String? getMovieFilePath(Movie movie) {
  if (_isPodStorageEnabled && _podService != null) {
    return _podService!.getMovieFilePath(movie);
  }
  // Local storage doesn't have shareable file paths.

  return null;
}