excludedCamera2Models property
A list of devices that must not use the camera2 API.
Android only.
Unmodifiable property. Use setter instead of .remove(), .addAll(), etc.
Implementation
List<String>? get excludedCamera2Models => _excludedCamera2Models;
Implementation
set excludedCamera2Models(List<String>? val) {
if (val != null) val = List.unmodifiable(val);
_excludedCamera2Models = val;
_set({"excludedCamera2Models": val});
}