copyWith method

RateSpeechRecognition copyWith({
  1. int? chatId,
  2. int? messageId,
  3. bool? isGood,
})

Implementation

RateSpeechRecognition copyWith({
  int? chatId,
  int? messageId,
  bool? isGood,
}) =>
    RateSpeechRecognition(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      isGood: isGood ?? this.isGood,
    );