copyWith method

Implementation

SandboxPublicTokenCreateRequestOptionsTransactions copyWith(
    {DateTime? startDate, DateTime? endDate}) {
  return SandboxPublicTokenCreateRequestOptionsTransactions(
      startDate: startDate ?? this.startDate,
      endDate: endDate ?? this.endDate);
}