copyWith method

Loan copyWith({
  1. LoanIdentifiers? loanidentifiers,
})

Implementation

Loan copyWith({LoanIdentifiers? loanidentifiers}) {
  return Loan(loanidentifiers: loanidentifiers ?? this.loanidentifiers);
}