getAncestor method

  1. @override
Future<ThermionEntity?> getAncestor(
  1. ThermionEntity entity
)
override

Gets the ancestor (ultimate parent) entity of entity. Returns null if the entity has no parent.

Implementation

@override
Future<ThermionEntity?> getAncestor(ThermionEntity entity) {
  // TODO: implement getAncestor
  throw UnimplementedError();
}