EntityTemplateDto constructor

EntityTemplateDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. String? userId,
  5. String? descr,
  6. Set<String> keywords = const {},
  7. String? entityType,
  8. String? subType,
  9. bool? defaultTemplate,
  10. List<Map<String, Object>> entity = const [],
})

Returns a new EntityTemplateDto instance.

Implementation

EntityTemplateDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.userId,
  this.descr,
  this.keywords = const {},
  this.entityType,
  this.subType,
  this.defaultTemplate,
  this.entity = const [],
});