toJson method

Map toJson()

Implementation

Map toJson() {
  Map data = Map();
  data.putIfNotNull("paramType", chatSilentModeParamTypeToInt(_paramType));
  data.putIfNotNull("remindType", chatPushRemindTypeToInt(remindType));
  data.putIfNotNull("startTime", startTime?.toJson());
  data.putIfNotNull("endTime", endTime?.toJson());
  data.putIfNotNull("duration", silentDuration);
  return data;
}