copyWith method

EditInlineMessageLiveLocation copyWith({
  1. String? inlineMessageId,
  2. ReplyMarkup? replyMarkup,
  3. LiveLocation? location,
})

Implementation

EditInlineMessageLiveLocation copyWith({
  String? inlineMessageId,
  ReplyMarkup? replyMarkup,
  LiveLocation? location,
}) => EditInlineMessageLiveLocation(
  inlineMessageId: inlineMessageId ?? this.inlineMessageId,
  replyMarkup: replyMarkup ?? this.replyMarkup,
  location: location ?? this.location,
);