useTransformationController function

TransformationController useTransformationController([
  1. Matrix4? value
])

Implementation

TransformationController useTransformationController([Matrix4? value]) {
  return useChangeNotifier(
    () => TransformationController(value),
  );
}