copyWith method

CreditBankIncomeRefreshResponse copyWith({
  1. String? requestId,
})

Implementation

CreditBankIncomeRefreshResponse copyWith({String? requestId}) {
  return CreditBankIncomeRefreshResponse(
      requestId: requestId ?? this.requestId);
}