copyWith method
InlineQueryResults
copyWith({
- int? inlineQueryId,
- InlineQueryResultsButton? button,
- List<
InlineQueryResult> ? results, - 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,
);