EntityRecord constructor

const EntityRecord({
  1. required String id,
  2. required String workspaceId,
  3. required String type,
  4. required String name,
  5. Map<String, dynamic> properties = const {},
  6. required DateTime createdAt,
  7. DateTime? updatedAt,
})

Implementation

const EntityRecord({
  required this.id,
  required this.workspaceId,
  required this.type,
  required this.name,
  this.properties = const {},
  required this.createdAt,
  this.updatedAt,
});