copyWith method

DeleteBotMediaPreviews copyWith({
  1. int? botUserId,
  2. String? languageCode,
  3. List<int>? fileIds,
})

Implementation

DeleteBotMediaPreviews copyWith({
  int? botUserId,
  String? languageCode,
  List<int>? fileIds,
}) => DeleteBotMediaPreviews(
  botUserId: botUserId ?? this.botUserId,
  languageCode: languageCode ?? this.languageCode,
  fileIds: fileIds ?? this.fileIds,
);