I have a code in java where i have initialised the String like this way
String str = new String("");
but when i have converted the code to kotlin the same intilization is in the below way
private val mEmailApi : String("")
but it is giving me a error getter and setter required can you guys please let me know the way to initialise the String in Kotlin
Thanks In Advance
String str = "";?