copyWith method

PartnerName$Response copyWith({
  1. String? partnerName,
})

Implementation

PartnerName$Response copyWith({String? partnerName}) {
  return PartnerName$Response(partnerName: partnerName ?? this.partnerName);
}