copyWith method
Implementation
SandboxTransferRepaymentSimulateRequest copyWith(
{String? clientId, String? secret}) {
return SandboxTransferRepaymentSimulateRequest(
clientId: clientId ?? this.clientId, secret: secret ?? this.secret);
}