如何解决这个错误?我想打印json文件的数据,但当我调试我的代码比这个错误已经发生,我期待的json文件的数据作为输出。
3xiyfsfu1#
像这样使用
Future<void> readJson() async { final String response = await rootBundle.loadString('assets/jsonFile.json'); final data = await json.decode(response); print(json.encode(data)); }
1条答案
按热度按时间3xiyfsfu1#
像这样使用