copyWith method

UpdateRecentStickers copyWith({
  1. bool? isAttached,
  2. List<int>? stickerIds,
})

Implementation

UpdateRecentStickers copyWith({bool? isAttached, List<int>? stickerIds}) =>
    UpdateRecentStickers(
      isAttached: isAttached ?? this.isAttached,
      stickerIds: stickerIds ?? this.stickerIds,
    );