tryDecode property

Map? tryDecode

Implementation

Map? get tryDecode {
  try {
    return jsonDecode(this);
  } catch (_) {
    return null;
  }
}