static String readFile({ required String path, }) { final File file = File(path); return file.readAsStringSync().trim(); }