copyWith method
- ChatItem? value,
- ChatItemsCursor? cursor,
- ChatItemVersion? ver,
- List<
ChatItemsCursor?> ? repliesToCursors,
Returns a copy of this DtoChatMessage with the provided parameters.
Implementation
DtoChatMessage copyWith({
ChatItem? value,
ChatItemsCursor? cursor,
ChatItemVersion? ver,
List<ChatItemsCursor?>? repliesToCursors,
}) {
return DtoChatMessage(
value ?? this.value,
cursor ?? this.cursor,
ver ?? this.ver,
repliesToCursors ?? this.repliesToCursors,
);
}