toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  if (_doubleDollar != null) {
    map['doubleDollar'] = _doubleDollar?.toJson();
  }
  if (_doubleArrow != null) {
    map['doubleArrow'] = _doubleArrow?.toJson();
  }
  if (_payDownArrow != null) {
    map['payDownArrow'] = _payDownArrow?.toJson();
  }
  if (_calendar != null) {
    map['calendar'] = _calendar?.toJson();
  }
  if (_payHand != null) {
    map['payHand'] = _payHand?.toJson();
  }
  if (_keepItUp != null) {
    map['keepItUp'] = _keepItUp?.toJson();
  }
  if (_crossClose != null) {
    map['crossClose'] = _crossClose?.toJson();
  }
  if (_connectBank != null) {
    map['connectBank'] = _connectBank?.toJson();
  }
  if (_connectingDotsLeft != null) {
    map['connectingDotsLeft'] = _connectingDotsLeft?.toJson();
  }
  if (_connectingDotsRight != null) {
    map['connectingDotsRight'] = _connectingDotsRight?.toJson();
  }
  if (_inputCircle != null) {
    map['inputCircle'] = _inputCircle?.toJson();
  }
  if (_inputCircleChecked != null) {
    map['inputCircleChecked'] = _inputCircleChecked?.toJson();
  }
  return map;
}