copyWith method
Implementation
ChangeStickerSet copyWith({
int? setId,
bool? isInstalled,
bool? isArchived,
}) => ChangeStickerSet(
setId: setId ?? this.setId,
isInstalled: isInstalled ?? this.isInstalled,
isArchived: isArchived ?? this.isArchived,
);