copyWith method

EditMessageLiveLocation copyWith({
  1. int? chatId,
  2. int? messageId,
  3. ReplyMarkup? replyMarkup,
  4. Location? location,
  5. int? heading,
  6. int? proximityAlertRadius,
})

Implementation

EditMessageLiveLocation copyWith({
  int? chatId,
  int? messageId,
  ReplyMarkup? replyMarkup,
  Location? location,
  int? heading,
  int? proximityAlertRadius,
}) => EditMessageLiveLocation(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  replyMarkup: replyMarkup ?? this.replyMarkup,
  location: location ?? this.location,
  heading: heading ?? this.heading,
  proximityAlertRadius: proximityAlertRadius ?? this.proximityAlertRadius,
);