copyWith method
Implementation
WebApiModulesAgentDealCreateEpisodeBillScheduleResponse copyWith(
{int? status, bool? success, String? msg}) {
return WebApiModulesAgentDealCreateEpisodeBillScheduleResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}