writeFileText method

Future<void> writeFileText(
  1. String path,
  2. String textContent
)

Implementation

Future<void> writeFileText(String path, String textContent) =>
    writeFileBytes(path, Uint8List.fromList(textContent.codeUnits));