primaryContactId property

String primaryContactId

Implementation

String get primaryContactId => _getAttribute<String>(kPrimaryContactId, '');
void primaryContactId=(String? x)

pass null to remove key from attributes

Implementation

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