Future<String> fetchTextFile( String filePath, ) async { var file = File( filePath ); var fileText = await file.readAsString(); return fileText; }