writeBytes abstract method

void writeBytes(
  1. String filePath,
  2. List<int> content, {
  3. bool allowOverwrite = false,
})

Writes content to a file at filePath.

If a file is to be overwritten, a warning will be reported, unless allowOverwrite is true.

Implementation

void writeBytes(
  String filePath,
  List<int> content, {
  bool allowOverwrite = false,
});