copyWith method

Implementation

InlineQueryResultsButton copyWith({
  String? text,
  InlineQueryResultsButtonType? type,
}) => InlineQueryResultsButton(
  text: text ?? this.text,
  type: type ?? this.type,
);