FileNamerOptions constructor

const FileNamerOptions({
  1. required String folderPath,
  2. required String fileName,
  3. required String testName,
  4. String? description,
})

Creates a FileNamerOptions instance with required parameters.

Implementation

const FileNamerOptions({
  required this.folderPath,
  required this.fileName,
  required this.testName,
  this.description,
});