copyWith method

MonologRow copyWith({
  1. String? userId,
  2. String? chatId,
})

Implementation

MonologRow copyWith({String? userId, String? chatId}) =>
    MonologRow(userId: userId ?? this.userId, chatId: chatId ?? this.chatId);