CollectionEntry constructor

const CollectionEntry({
  1. String? id,
  2. String? collection,
  3. String? foreignId,
  4. Map<String, Object>? data,
  5. DateTime? createdAt,
  6. DateTime? updatedAt,
})

Builds a CollectionEntry.

Implementation

const CollectionEntry({
  this.id,
  this.collection,
  this.foreignId,
  this.data,
  this.createdAt,
  this.updatedAt,
});