FileNamerOptions constructor

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

Implementation

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