copyWithWrapped method

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

Implementation

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