copyWith method

CreditEmploymentGetResponse copyWith({
  1. List<CreditEmploymentItem>? items,
  2. String? requestId,
})

Implementation

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