copyWith method
Implementation
CreateNewStickerSet copyWith({
int? userId,
String? title,
String? name,
bool? isMasks,
List<InputSticker>? stickers,
String? source,
}) => CreateNewStickerSet(
userId: userId ?? this.userId,
title: title ?? this.title,
name: name ?? this.name,
isMasks: isMasks ?? this.isMasks,
stickers: stickers ?? this.stickers,
source: source ?? this.source,
);