copyWith method

InlineQueryResults copyWith({
  1. int? inlineQueryId,
  2. InlineQueryResultsButton? button,
  3. List<InlineQueryResult>? results,
  4. String? nextOffset,
  5. dynamic extra,
  6. int? clientId,
})

Implementation

InlineQueryResults copyWith({
  int? inlineQueryId,
  InlineQueryResultsButton? button,
  List<InlineQueryResult>? results,
  String? nextOffset,
  dynamic extra,
  int? clientId,
}) =>
    InlineQueryResults(
      inlineQueryId: inlineQueryId ?? this.inlineQueryId,
      button: button ?? this.button,
      results: results ?? this.results,
      nextOffset: nextOffset ?? this.nextOffset,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );