copyWithWrapped method

TransferDevice copyWithWrapped({
  1. Wrapped<String>? ipAddress,
  2. Wrapped<String>? userAgent,
})

Implementation

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