copyWith method
CreateNewStickerSet
copyWith({
- int? userId,
- String? title,
- String? name,
- StickerType? stickerType,
- bool? needsRepainting,
- List<
NewSticker> ? stickers, - String? source,
Implementation
CreateNewStickerSet copyWith({
int? userId,
String? title,
String? name,
StickerType? stickerType,
bool? needsRepainting,
List<NewSticker>? stickers,
String? source,
}) => CreateNewStickerSet(
userId: userId ?? this.userId,
title: title ?? this.title,
name: name ?? this.name,
stickerType: stickerType ?? this.stickerType,
needsRepainting: needsRepainting ?? this.needsRepainting,
stickers: stickers ?? this.stickers,
source: source ?? this.source,
);