copyWith method
Implementation
CreditEmploymentGetResponse copyWith(
{List<CreditEmploymentItem>? items, String? requestId}) {
return CreditEmploymentGetResponse(
items: items ?? this.items, requestId: requestId ?? this.requestId);
}
CreditEmploymentGetResponse copyWith(
{List<CreditEmploymentItem>? items, String? requestId}) {
return CreditEmploymentGetResponse(
items: items ?? this.items, requestId: requestId ?? this.requestId);
}