copyWith method
Implementation
SandboxTransferSweepSimulateRequest copyWith(
{String? clientId,
String? secret,
List<String>? swept,
List<String>? reverseSwept}) {
return SandboxTransferSweepSimulateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
swept: swept ?? this.swept,
reverseSwept: reverseSwept ?? this.reverseSwept);
}