uiCustomizationLayer property
Map<String, dynamic>?
get
uiCustomizationLayer
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;
set
uiCustomizationLayer
(Map<String, dynamic>? val)
Implementation
set uiCustomizationLayer(Map<String, dynamic>? val) {
if (val != null) val = Map.unmodifiable(val);
_uiCustomizationLayer = val;
_set({"uiCustomizationLayer": val});
}