copyWith method

SendBotStartMessage copyWith({
  1. int? botUserId,
  2. int? chatId,
  3. String? parameter,
})

Implementation

SendBotStartMessage copyWith({
  int? botUserId,
  int? chatId,
  String? parameter,
}) =>
    SendBotStartMessage(
      botUserId: botUserId ?? this.botUserId,
      chatId: chatId ?? this.chatId,
      parameter: parameter ?? this.parameter,
    );