how to add items ( elements ) to a MutableList fom WEB using kotlin?
I need to add elements to my MutableList from web using kotlin and that's an example to explain what i want to say :
I have a link of a book in google drive like
this and i want to add The title and the link of the book to my LIST :
var booksList:MutableList = ArrayList()
bookslist.add(Book("I WANT TO ADD THE TITLE HERE","AND THE LINK HERE"))