copyWith method

EditInlineMessageLiveLocation copyWith({
  1. String? inlineMessageId,
  2. ReplyMarkup? replyMarkup,
  3. Location? location,
  4. int? heading,
  5. 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,
    );