copyWith method

AnswerWebAppQuery copyWith({
  1. String? webAppQueryId,
  2. InputInlineQueryResult? result,
})

Implementation

AnswerWebAppQuery copyWith({
  String? webAppQueryId,
  InputInlineQueryResult? result,
}) =>
    AnswerWebAppQuery(
      webAppQueryId: webAppQueryId ?? this.webAppQueryId,
      result: result ?? this.result,
    );