I want to initialize the value of image when data is fetched from server I tried this but value isn't updating.
@Entity(tableName = "categories")
data class Category(
@PrimaryKey(autoGenerate = false)
val name: String,
var image: String,
){
init{
image = "someUrl" + image
}
}