checkFile function

bool checkFile(
  1. String mediaLocalStoragePath
)

Implementation

bool checkFile(String mediaLocalStoragePath) {
  return mediaLocalStoragePath.isNotEmpty &&
      File(mediaLocalStoragePath).existsSync();
}