Json.parse constructor

Json.parse(
  1. Map<String, dynamic> json, {
  2. bool strict = true,
})

Deserialize a json map

Implementation

Json.parse(Map<String, dynamic> json, {bool strict = true}) : super() {
  parse(json, strict: strict);
}