@Composable
fun BirthdayGreetingWithImage(message : String,from : String){
val image = painterResource(id = R.drawable.androidparty)
Image(
painter = image,
contentDescription = null
)
}
here the error is coming
Cannot access '<init>': it is package-private in 'Image'
