copyWith method

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

Implementation

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