What would be a work around to initialize an `obje...
# getting-started
n
What would be a work around to initialize an
object
, something like this:
Copy code
object RemoteService (val context: Context) {

    init {
         // use the `context` here
    }
}