createFile function

Future<void> createFile(
  1. dynamic filePath,
  2. String data, {
  3. bool clear = false,
})

Implementation

Future<void> createFile(filePath, String data, {bool clear = false}) async {
  throw UnsupportedError('platform not supported');
}