``` class AbsParam<T> { val question: Stri...
# announcements
m
Copy code
class AbsParam<T> {
  val question: String
    get() = /* your own getter */

  constructor(question: String) {
    this.question = question
  }
}