FileWriteException constructor
FileWriteException({
- required String filePath,
- required RenamePlatform platform,
- required String details,
Implementation
FileWriteException({
required String filePath,
required this.platform,
required String details,
}) : super(
'Oops! We encountered an issue while writing to the file at path: '
'$filePath for platform: ${platform.toString()}. '
'Details: $details',
);