getMovieFilePath method

String? getMovieFilePath(
  1. Movie movie
)

Gets the file path for a movie file (used for sharing). Local storage doesn't have shareable file paths, so this returns null.

Implementation

String? getMovieFilePath(Movie movie) {
  return null; // Local storage doesn't support file sharing
}