copyWith method

  1. @override
ChatEventIsAllHistoryAvailableToggled copyWith({
  1. bool? isAllHistoryAvailable,
})
override

Implementation

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