setFocusMode method
Sets the focus mode of the camera.
focusMode
: The focus mode to set.
Returns a Future that completes with a boolean indicating whether the focus mode was set successfully.
Implementation
Future<bool?> setFocusMode(FocusMode focusMode) async {
return await broadcater.setFocusMode(focusMode);
}