create method
Implementation
File create({bool skipFormatter = false}) {
return writeFile(
path,
customContent.isNotEmpty ? customContent : content,
overwrite: overwrite,
skipFormatter: skipFormatter,
useRelativeImport: true,
);
}