copyWith method
Implementation
@override
MessageChatSetMessageAutoDeleteTime copyWith({
int? messageAutoDeleteTime,
int? fromUserId,
}) =>
MessageChatSetMessageAutoDeleteTime(
messageAutoDeleteTime:
messageAutoDeleteTime ?? this.messageAutoDeleteTime,
fromUserId: fromUserId ?? this.fromUserId,
);