copyWith method
Implementation
@override
InlineQueryResultLocation copyWith({
String? id,
Location? location,
String? title,
Thumbnail? thumbnail,
}) =>
InlineQueryResultLocation(
id: id ?? this.id,
location: location ?? this.location,
title: title ?? this.title,
thumbnail: thumbnail ?? this.thumbnail,
);