fileNameRandom method

String fileNameRandom()

Generates a random file name for the type, with the corresponding fileExtension.

Implementation

String fileNameRandom() {
  return fileName(Math.random().toString());
}