appendFileSync void appendFileSync( String filePath, String data ) Append a string to a file synchronously. Creates the file if missing. Implementation void appendFileSync(String filePath, String data) { _fs.callMethod('appendFileSync'.toJS, filePath.toJS, data.toJS); }