copyWith method

SandboxTransferSweepSimulateRequest copyWith({
  1. String? clientId,
  2. String? secret,
})

Implementation

SandboxTransferSweepSimulateRequest copyWith(
    {String? clientId, String? secret}) {
  return SandboxTransferSweepSimulateRequest(
      clientId: clientId ?? this.clientId, secret: secret ?? this.secret);
}