Reads a json file from the assets folder.
Future<Map<String, dynamic>> readJson(String fileName) async { final content = await readFile(fileName); return jsonDecode(content) as Map<String, dynamic>; }