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