copyWithWrapped method
Implementation
TransferAuthorizationDevice copyWithWrapped(
{Wrapped<String?>? ipAddress, Wrapped<String?>? userAgent}) {
return TransferAuthorizationDevice(
ipAddress: (ipAddress != null ? ipAddress.value : this.ipAddress),
userAgent: (userAgent != null ? userAgent.value : this.userAgent));
}