selectedLayoutId property

String selectedLayoutId

Implementation

String get selectedLayoutId => _getAttribute<String>(kSelectedLayoutId, '');
void selectedLayoutId=(String? x)

pass null to remove key from attributes

Implementation

set selectedLayoutId(String? x) => (x == null)
    ? _attributes.remove(kSelectedLayoutId)
    : _attributes[kSelectedLayoutId] = x;