allowDots property
final
When true
, decode dot notation in keys: a.b=c
→ {a: {b: "c"}}
.
If you set decodeDotInKeys to true
, this flag is implied and will be
treated as enabled even if you pass allowDots: false
.
Implementation
final bool allowDots;