accountSetId property

String accountSetId

Implementation

String get accountSetId {
  // Hack to deal with empty ids.
  // Can be removed once Directory has a search by user
  // function
  try {
    return Uuid.unparse(_alias.accountSetId);
  } catch (e) {
    return '';
  }
}