copyWith method

SearchChatAffiliateProgram copyWith({
  1. String? username,
  2. String? referrer,
})

Implementation

SearchChatAffiliateProgram copyWith({String? username, String? referrer}) =>
    SearchChatAffiliateProgram(
      username: username ?? this.username,
      referrer: referrer ?? this.referrer,
    );