When I implement a method or a property in a class that implements an interface, can I change the template so that it won’t include the return type? Currently, it makes like this:
Copy code
override fun stage(): List<String> {
TODO("Not yet implemented")
}