copyWithWrapped method

ItemApplicationListUserAuth copyWithWrapped({
  1. Wrapped<String?>? userId,
  2. Wrapped<String?>? fiUsernameHash,
})

Implementation

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