copyWith method

DtoChatMessage copyWith({
  1. ChatItem? value,
  2. ChatItemsCursor? cursor,
  3. ChatItemVersion? ver,
  4. 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,
  );
}