copyWith method

AddStickerToSet copyWith({
  1. int? userId,
  2. String? name,
  3. NewSticker? sticker,
})

Implementation

AddStickerToSet copyWith({int? userId, String? name, NewSticker? sticker}) =>
    AddStickerToSet(
      userId: userId ?? this.userId,
      name: name ?? this.name,
      sticker: sticker ?? this.sticker,
    );