toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  if (adShortShow != null) {
    map['ad_short_show'] = adShortShow?.toJson();
  }
  if (adShortClose != null) {
    map['ad_short_close'] = adShortClose?.toJson();
  }
  map['wrong_deem_ad_less'] = wrongDeemAdLess;
  map['wrong_deem_ad_more'] = wrongDeemAdMore;
  map['no_install'] = noInstall;
  map['ad_daily_show'] = adDailyShow;
  return map;
}