EntryModel constructor

EntryModel(
  1. String locale,
  2. String title,
  3. String url,
  4. String description,
  5. List categories,
  6. List tags,
  7. String uid,
  8. String createdBy,
  9. String updatedBy,
  10. String createdAt,
  11. String updatedAt,
  12. int version
)

Implementation

EntryModel(
    this.locale,
    this.title,
    this.url,
    this.description,
    this.categories,
    this.tags,
    this.uid,
    this.createdBy,
    this.updatedBy,
    this.createdAt,
    this.updatedAt,
    this.version);