FormAnswer constructor

FormAnswer({
  1. JsonNode? adf,
  2. List<String>? choices,
  3. String? date,
  4. String? text,
  5. String? time,
  6. List<String>? users,
})

Implementation

FormAnswer(
    {this.adf,
    List<String>? choices,
    this.date,
    this.text,
    this.time,
    List<String>? users})
    : choices = choices ?? [],
      users = users ?? [];