copyWith method

  1. @override
ChatEventInvitesToggled copyWith({
  1. bool? canInviteUsers,
})
override

Implementation

@override
ChatEventInvitesToggled copyWith({
  bool? canInviteUsers,
}) => ChatEventInvitesToggled(
  canInviteUsers: canInviteUsers ?? this.canInviteUsers,
);