copyWith method

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

Implementation

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