copyWithWrapped method

IsPartnerPresent copyWithWrapped({
  1. Wrapped<Object?>? isPartnerPresent,
})

Implementation

IsPartnerPresent copyWithWrapped({Wrapped<Object?>? isPartnerPresent}) {
  return IsPartnerPresent(
      isPartnerPresent: (isPartnerPresent != null
          ? isPartnerPresent.value
          : this.isPartnerPresent));
}