copyWith method

  1. @override
ChatEventTitleChanged copyWith({
  1. String? oldTitle,
  2. String? newTitle,
})
override

Implementation

@override
ChatEventTitleChanged copyWith({
  String? oldTitle,
  String? newTitle,
}) =>
    ChatEventTitleChanged(
      oldTitle: oldTitle ?? this.oldTitle,
      newTitle: newTitle ?? this.newTitle,
    );