copyWithWrapped method
StudentLoanStatus
copyWithWrapped({
- Wrapped<
DateTime?> ? endDate, - Wrapped<
StudentLoanStatusType?> ? type,
Implementation
StudentLoanStatus copyWithWrapped(
{Wrapped<DateTime?>? endDate,
Wrapped<enums.StudentLoanStatusType?>? type}) {
return StudentLoanStatus(
endDate: (endDate != null ? endDate.value : this.endDate),
type: (type != null ? type.value : this.type));
}