从文件中读取内容。
static Future<String> readFile(String path) async { File file = File(path); return file.readAsString(); }