copyWith method
Implementation
DepositSwitchAltCreateResponse copyWith(
{String? depositSwitchId, String? requestId}) {
return DepositSwitchAltCreateResponse(
depositSwitchId: depositSwitchId ?? this.depositSwitchId,
requestId: requestId ?? this.requestId);
}