createFile method
Creates a file at the given path, optionally with content.
Implementation
@override
Future<bool> createFile(String path, [String? content]) async {
return await methodChannel.invokeMethod('createFile', {
'path': path,
'content': content,
});
}