copyWith method

MessageChatOwnerLeft copyWith({
  1. int? newOwnerUserId,
})

Implementation

MessageChatOwnerLeft copyWith({int? newOwnerUserId}) => MessageChatOwnerLeft(
  newOwnerUserId: newOwnerUserId ?? this.newOwnerUserId,
);