FileReadException constructor

FileReadException({
  1. required String filePath,
  2. required RenamePlatform platform,
  3. required String details,
})

Implementation

FileReadException({
  required String filePath,
  required this.platform,
  required String details,
}) : super(
        'Oops! We encountered an issue while reading the file at path: '
        '$filePath for platform: ${platform.toString()}. '
        'Details: $details',
      );