themes property

String themes

Implementation

String get themes => _getAttribute<String>(kThemes, '');
void themes=(String? x)

pass null to remove key from attributes

Implementation

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