copyWith method

Loans copyWith({
  1. Loan? loan,
})

Implementation

Loans copyWith({Loan? loan}) {
  return Loans(loan: loan ?? this.loan);
}