copyWith method
EditInlineMessageLiveLocation
copyWith({
- String? inlineMessageId,
- ReplyMarkup? replyMarkup,
- Location? location,
- int? heading,
- int? proximityAlertRadius,
Implementation
EditInlineMessageLiveLocation copyWith({
String? inlineMessageId,
ReplyMarkup? replyMarkup,
Location? location,
int? heading,
int? proximityAlertRadius,
}) =>
EditInlineMessageLiveLocation(
inlineMessageId: inlineMessageId ?? this.inlineMessageId,
replyMarkup: replyMarkup ?? this.replyMarkup,
location: location ?? this.location,
heading: heading ?? this.heading,
proximityAlertRadius: proximityAlertRadius ?? this.proximityAlertRadius,
);