copyWith method

GetMapThumbnailFile copyWith({
  1. Location? location,
  2. int? zoom,
  3. int? width,
  4. int? height,
  5. int? scale,
  6. int? chatId,
})

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,
    );