isLegalLength function

bool isLegalLength(
  1. String filename
)

Checks if the filename is of valid length.

The filename must be less than or equal to 255 characters and not empty.

Implementation

bool isLegalLength(String filename) {
  return filename.length <= 255 && filename.isNotEmpty;
}