jsonData property

Map? jsonData

Implementation

Map? get jsonData {
  try {
    return json.decode(body);
  } catch (e) {
    return null;
  }
}