``` fun post(callback: (Map<String, String>)...
# announcements
j
Copy code
fun post(callback: (Map<String, String>) -> Void) {
    callback(mapOf("code" to "0", "msg" to "success"))
}
How to return void when I call it. like this one?
Copy code
post { result ->
  // return Void?
}