copyWith method
Implementation
GetMapThumbnailFile copyWith({
  Location? location,
  int? zoom,
  int? width,
  int? height,
  int? scale,
  int? chatId,
}) => GetMapThumbnailFile(
  location: location ?? this.location,
  zoom: zoom ?? this.zoom,
  width: width ?? this.width,
  height: height ?? this.height,
  scale: scale ?? this.scale,
  chatId: chatId ?? this.chatId,
);