copyWith method

ReorderInstalledStickerSets copyWith({
  1. bool? isMasks,
  2. List<int>? stickerSetIds,
})

Implementation

ReorderInstalledStickerSets copyWith({
  bool? isMasks,
  List<int>? stickerSetIds,
}) => ReorderInstalledStickerSets(
  isMasks: isMasks ?? this.isMasks,
  stickerSetIds: stickerSetIds ?? this.stickerSetIds,
);