copyWith method

ChatEventMemberTagChanged copyWith({
  1. int? userId,
  2. String? oldTag,
  3. String? newTag,
})

Implementation

ChatEventMemberTagChanged copyWith({
  int? userId,
  String? oldTag,
  String? newTag,
}) => ChatEventMemberTagChanged(
  userId: userId ?? this.userId,
  oldTag: oldTag ?? this.oldTag,
  newTag: newTag ?? this.newTag,
);