writeContentByPath static method
Implementation
static Future<bool> writeContentByPath({
required String filePath,
required String content,
bool? autoCreate = false,
FileMode mode = FileMode.append
}) async {
return await writeContentByFile(
file: File(filePath),
content: content,
autoCreate: autoCreate,
mode: mode
);
}