copyWith method

CreateNewStickerSet copyWith({
  1. int? userId,
  2. String? title,
  3. String? name,
  4. bool? isMasks,
  5. List<InputSticker>? stickers,
  6. String? source,
})

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,
);