getDocPath static method

PathEntity getDocPath(
  1. String id,
  2. DbEntity entity,
  3. CollRefRepo parentColl
)

Implementation

static PathEntity getDocPath(
    String id, DbEntity entity, CollRefRepo parentColl) {
  return PathEntity(
    name: id,
    entity: entity,
    parentPath: parentColl.path,
  );
}