copyWith method

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

Implementation

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