toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  if (_defaultIcons != null) {
    map['default_icons'] = _defaultIcons?.toJson();
  }
  if (_calendar != null) {
    map['calendar'] = _calendar?.toJson();
  }
  if (_arrowLeft != null) {
    map['arrowLeft'] = _arrowLeft?.toJson();
  }
  if (_arrowLeftLarge != null) {
    map['arrowLeftLarge'] = _arrowLeftLarge?.toJson();
  }
  if (_arrowRight != null) {
    map['arrowRight'] = _arrowRight?.toJson();
  }
  if (_info != null) {
    map['info'] = _info?.toJson();
  }
  if (_roundup != null) {
    map['roundup'] = _roundup?.toJson();
  }
  if (_checkCircle != null) {
    map['checkCircle'] = _checkCircle?.toJson();
  }
  if (_search != null) {
    map['search'] = _search?.toJson();
  }
  return map;
}