create method
void
create()
Uses FileService to write file to the disk with the given path and content
fullPath needs to be fully qualified path where the file needs to be created
content is the raw string containing the contents of the file
Implementation
void create() {
FileService.writeFile(fullPath, content);
}