copyWith method
- bool? hasServiceAgreement,
- DateTime? beginDate,
- ServiceAgreementTermDTO? term,
- int? termMonths,
- int? termDays,
Implementation
ServiceAgreementUpdateV3Body copyWith(
{bool? hasServiceAgreement,
DateTime? beginDate,
enums.ServiceAgreementTermDTO? term,
int? termMonths,
int? termDays}) {
return ServiceAgreementUpdateV3Body(
hasServiceAgreement: hasServiceAgreement ?? this.hasServiceAgreement,
beginDate: beginDate ?? this.beginDate,
term: term ?? this.term,
termMonths: termMonths ?? this.termMonths,
termDays: termDays ?? this.termDays);
}