FileOutput constructor

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

Implementation

FileOutput({
  required File file,
  bool overrideExisting = false,
  Encoding encoding = utf8,
}) {
  throw UnsupportedError("Not supported on this platform.");
}