alternateKeys property

String alternateKeys

Implementation

String get alternateKeys => _getAttribute<String>(kAlternateKeys, '');
void alternateKeys=(String? x)

An array of objects.

{ "name": "My Alternate Key", "key": "B" }

pass null to remove key from attributes

Implementation

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