getGizmo method
Implementation
@override
Future<GizmoAsset> getGizmo(GizmoType gizmoType) async {
if (_gizmos[gizmoType] == null) {
_gizmos[gizmoType] = await FilamentApp.instance!.createGizmo(
view,
animationManager,
gizmoType,
);
}
return _gizmos[gizmoType]!;
}