loadFileContent method
The method that load the whole file content in memory
Implementation
Future<String> loadFileContent(
final String fileName, final IFileContent fileContent) {
return fileContent.loadString(fileName, fileExtension);
}
The method that load the whole file content in memory
Future<String> loadFileContent(
final String fileName, final IFileContent fileContent) {
return fileContent.loadString(fileName, fileExtension);
}