FileOutput constructor

FileOutput({
  1. required File file,
  2. bool overrideExisting = false,
  3. Encoding encoding = utf8,
})

Implementation

FileOutput({
  required this.file,
  this.overrideExisting = false,
  this.encoding = utf8,
});