copyWithout method
Implementation
ServiceAgreementFormData copyWithout({
bool hasServiceAgreement = false,
bool beginDate = false,
bool term = false,
bool termMonths = false,
bool termDays = false,
}) {
return ServiceAgreementFormData(
hasServiceAgreement:
hasServiceAgreement ? null : this.hasServiceAgreement,
beginDate: beginDate ? null : this.beginDate,
term: term ? null : this.term,
termMonths: termMonths ? null : this.termMonths,
termDays: termDays ? null : this.termDays,
);
}