linkedContactIds property

List<String> linkedContactIds

Implementation

List<String> get linkedContactIds => _linkedContactIds;
void linkedContactIds=(List<String>? value)

Implementation

set linkedContactIds(List<String>? value) {
  _linkedContactIds.clear();
  _linkedContactIds.addAll([...?value]);
}