copyWith method

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

Implementation

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