copyWith method

  1. @override
UserPrivacySettingRuleAllowChatMembers copyWith({
  1. List<int>? chatIds,
})
override

Implementation

@override
UserPrivacySettingRuleAllowChatMembers copyWith({
  List<int>? chatIds,
}) =>
    UserPrivacySettingRuleAllowChatMembers(
      chatIds: chatIds ?? this.chatIds,
    );