Questions constructor

Questions({
  1. List<String>? fields,
  2. String? sId,
  3. String? title,
  4. String? description,
  5. required bool remark,
  6. String? type,
  7. int? maxline,
  8. bool? isMandatory,
})

Implementation

Questions({
  this.fields,
  this.sId,
  this.title,
  this.description,
  required this.remark,
  this.type,
  this.maxline,
  this.isMandatory,
});