anyMap property
If true
, Map types are not assumed to be Map<String, dynamic>
– which is the default type of Map instances return by JSON decode in
dart:convert
.
This will increase the code size, but allows Map types returned
from other sources, such as package:yaml
.
Note: in many cases the key values are still assumed to be String.
Implementation
final bool? anyMap;