getMovieFilePath method

String getMovieFilePath(
  1. Movie movie
)

Gets the file path for a movie file (used for sharing).

Implementation

String getMovieFilePath(Movie movie) {
  return '$basePath/movies/Movie-${movie.id}.ttl'; // Use Movie-ID pattern to match ontology
}