decode abstract method

Map<String, dynamic> decode(
  1. String raw
)

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

Map<String, dynamic> decode(String raw);