copyWith method

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

Implementation

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