copyWith method
CreditEmploymentItem
copyWith({
- String? itemId,
- List<
CreditEmploymentVerification> ? employments, - String? employmentReportToken,
Implementation
CreditEmploymentItem copyWith(
{String? itemId,
List<CreditEmploymentVerification>? employments,
String? employmentReportToken}) {
return CreditEmploymentItem(
itemId: itemId ?? this.itemId,
employments: employments ?? this.employments,
employmentReportToken:
employmentReportToken ?? this.employmentReportToken);
}