CustomFieldResponse constructor

CustomFieldResponse({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? crew,
  5. int? question,
  6. CustomFieldResponseDataType? dataType,
  7. String? responseData,
})

Implementation

CustomFieldResponse({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.crew,
  this.question,
  this.dataType,
  this.responseData,
});