hyukchan
04/11/2019, 9:52 AMclass SdWsService(fileUtils: FileUtils) {
suspend fun getXmlFile(environment: String?, filename: String): String = dbQuery(environment) {
Inside getXmlFile, I do not have access to my fileUtils ...diesieben07
04/11/2019, 9:57 AMfileUtils is just a constructor parameter. If you want it to be a property of your class, add the val keyword...hyukchan
04/11/2019, 10:03 AM