keyId property

String keyId

Implementation

String get keyId => _getAttribute<String>(kKeyId, '');
void keyId=(String? x)

pass null to remove key from attributes

Implementation

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