copyWithWrapped method

ItemImportRequestUserAuth copyWithWrapped({
  1. Wrapped<String>? userId,
  2. Wrapped<String>? authToken,
})

Implementation

ItemImportRequestUserAuth copyWithWrapped(
    {Wrapped<String>? userId, Wrapped<String>? authToken}) {
  return ItemImportRequestUserAuth(
      userId: (userId != null ? userId.value : this.userId),
      authToken: (authToken != null ? authToken.value : this.authToken));
}