uiCustomizationLayer property
JSON structure defining labels and graphic elements to be added to the Camera UI.
Unmodifiable property. Use setter instead of .remove(), .addAll(), etc.
Implementation
Map<String, dynamic>? get uiCustomizationLayer => _uiCustomizationLayer;
Implementation
set uiCustomizationLayer(Map<String, dynamic>? val) {
if (val != null) val = Map.unmodifiable(val);
_uiCustomizationLayer = val;
_set({"uiCustomizationLayer": val});
}