copyWithWrapped method

PostAccountWrapper copyWithWrapped({
  1. Wrapped<SaveAccount>? account,
})

Implementation

PostAccountWrapper copyWithWrapped({Wrapped<SaveAccount>? account}) {
  return PostAccountWrapper(
      account: (account != null ? account.value : this.account));
}