checkFileExists method

bool checkFileExists(
  1. List? fileContent
)

Implementation

bool checkFileExists(List? fileContent) {
  return fileContent == null || fileContent.isEmpty;
}