copyWithWrapped method
Implementation
SandboxPublicTokenCreateRequestOptionsTransactions copyWithWrapped(
{Wrapped<DateTime?>? startDate, Wrapped<DateTime?>? endDate}) {
return SandboxPublicTokenCreateRequestOptionsTransactions(
startDate: (startDate != null ? startDate.value : this.startDate),
endDate: (endDate != null ? endDate.value : this.endDate));
}