autofocus property

bool get autofocus

Whether the camera should autofocus.

Implementation

bool get autofocus => _autofocus;
set autofocus (bool value)

Whether the camera should autofocus.

Implementation

set autofocus(bool value) {
  _autofocus = value;
  notifyListeners();
}