copyWith method

SandboxTransferSweepSimulateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. List<String>? swept,
  4. List<String>? reverseSwept,
})

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);
}