String readFileContent(String filePath) { try { return File(filePath).readAsStringSync(); } catch (e) { print('Error reading the file: $e'); return ''; } }