copyWith method

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

Implementation

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