FormResponse constructor

FormResponse({
  1. Map<String, Answer>? answers,
  2. String? createTime,
  3. String? formId,
  4. String? lastSubmittedTime,
  5. String? respondentEmail,
  6. String? responseId,
  7. double? totalScore,
})

Implementation

FormResponse({
  this.answers,
  this.createTime,
  this.formId,
  this.lastSubmittedTime,
  this.respondentEmail,
  this.responseId,
  this.totalScore,
});