config property

String config

Implementation

String get config => _getAttribute<String>(kConfig, '');
void config=(String? x)

pass null to remove key from attributes

Implementation

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