linkedContactIds property

List<String> get linkedContactIds

Implementation

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

Implementation

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