copyWith method

IsPartnerPresent$Response copyWith({
  1. Object? isPartnerPresent,
})

Implementation

IsPartnerPresent$Response copyWith({Object? isPartnerPresent}) {
  return IsPartnerPresent$Response(
      isPartnerPresent: isPartnerPresent ?? this.isPartnerPresent);
}