copyWith method
Implementation
AnswerInlineQuery copyWith({
int? inlineQueryId,
bool? isPersonal,
List<InputInlineQueryResult>? results,
int? cacheTime,
String? nextOffset,
String? switchPmText,
String? switchPmParameter,
}) => AnswerInlineQuery(
inlineQueryId: inlineQueryId ?? this.inlineQueryId,
isPersonal: isPersonal ?? this.isPersonal,
results: results ?? this.results,
cacheTime: cacheTime ?? this.cacheTime,
nextOffset: nextOffset ?? this.nextOffset,
switchPmText: switchPmText ?? this.switchPmText,
switchPmParameter: switchPmParameter ?? this.switchPmParameter,
);