copyWith method

ChatItemViewRow copyWith({
  1. String? chatId,
  2. String? chatItemId,
})

Implementation

ChatItemViewRow copyWith({String? chatId, String? chatItemId}) =>
    ChatItemViewRow(
      chatId: chatId ?? this.chatId,
      chatItemId: chatItemId ?? this.chatItemId,
    );