copyWith method

ChangeStickerSet copyWith({
  1. int? setId,
  2. bool? isInstalled,
  3. bool? isArchived,
})

Implementation

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