copyWith method

RecognizeSpeech copyWith({
  1. int? chatId,
  2. int? messageId,
})

Implementation

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