Load the text file at path from the assets folder and return the contents as a string.
path
Future<String> loadAsset(String path) async { return await rootBundle.loadString(path); }