Datum constructor

Datum({
  1. int? id,
  2. String? uid,
  3. String? title,
  4. String? action,
  5. String? body,
  6. Meta? meta,
  7. bool? read,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
  10. String? icon,
})

Implementation

Datum({
    this.id,
    this.uid,
    this.title,
    this.action,
    this.body,
    this.meta,
    this.read,
    this.createdAt,
    this.updatedAt,
    this.icon,
});