setFocusPoint method
Implementation
Future<void> setFocusPoint(Offset? point) async {
if (!value.capabilities.focusPoint) return;
await _set("setFocusPoint", <String, Object?>{"x": point?.dx, "y": point?.dy});
_emit(point == null ? value.copyWith(clearFocusPoint: true) : value.copyWith(focusPoint: point));
}