checkFile method

dynamic checkFile(
  1. String mediaLocalStoragePath
)

Implementation

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