getMovieListFilePath method

String? getMovieListFilePath(
  1. String movieListId
)

Gets the file path for a MovieList for sharing purposes. Returns the relative path that can be used with GrantPermissionUi.

Implementation

String? getMovieListFilePath(String movieListId) {
  try {
    // Return the relative path for the movie list file
    return 'user_lists/MovieList-$movieListId.ttl';
  } catch (e) {
    debugPrint('❌ Error getting movie list file path: $e');
    return null;
  }
}