copyWith method

DeleteProfilePhoto copyWith({
  1. int? profilePhotoId,
})

Implementation

DeleteProfilePhoto copyWith({
  int? profilePhotoId,
}) =>
    DeleteProfilePhoto(
      profilePhotoId: profilePhotoId ?? this.profilePhotoId,
    );