getParent method

  1. @override
Future<ThermionEntity?> getParent(
  1. ThermionEntity child
)
override

Gets the parent transform of child.

Implementation

@override
Future<ThermionEntity?> getParent(ThermionEntity child) async {
  var result = await _shim.getParent(child).toDart;
  return result.toDartInt;
}