このように、「[1,2,3,4]」などの整数のリストをデコードしようとしています
decodeJson(json, new List<int>().runtimeType)
しかし、私はこのエラーが発生しています
MapperException: UnsupportedType: List<int>. This type wasn't mapped by redstone_mapper's
transformer. See http://goo.gl/YYMou2 for more information.
これが私のpubspec.yaml
name: restonetest
description: A sample web application
dependencies:
angular: any
appengine: any
browser: any
di: any
fp: any
redstone: any
redstone_mapper: any
shelf_static: any
transformers:
- redstone_mapper
- angular:
html_files:
- lib/client/models/evento/evento.html
私は何をすべきか?
編集
実際の問題はredstone_mapper
変圧器にあるようです。から取り出すpubspec.yaml
と動作します。