decode method
Transforms the raw string (json, yaml, csv) to a standardized map structure of Map<String, dynamic>
Children are Map<String, dynamic>, List
No case transformations, etc! Only the raw data represented as a tree.
Implementation
@override
Map<String, dynamic> decode(String raw) {
return json.decode(raw);
}