toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> _data = <String, dynamic>{};
  _data["mode"] = mode;
  _data["pure"] = pure;
  _data["step"] = step;
  _data["depth"] = depth;
  _data["width"] = width;
  _data["adjust"] = adjust;
  if (height != null) {
    _data["height"] = height;
  }
  _data["offset"] = offset;
  _data["available"] = available;
  _data["low_quota"] = lowQuota;
  _data["wall_section.accept_error"] = wallSectionAcceptError;
  _data["wall_section.delta_ignore"] = wallSectionDeltaIgnore;
  return _data;
}