FileExistsError constructor

FileExistsError({
  1. required Exception innerException,
  2. String message = 'This file already exists',
})

Implementation

FileExistsError({
  required this.innerException,
  String message = 'This file already exists',
}) : _message = message;