FileNotExistException constructor

FileNotExistException({
  1. required String filePath,
  2. required String details,
})

Implementation

FileNotExistException({required String filePath, required String details})
  : super(
      'Oops! The file does not exist at path: '
      '$filePath'
      'Details: $details',
    );