hideCombinator property

String? get hideCombinator

Implementation

String? get hideCombinator {
  if (!hide) return null;

  if (associatedElement case Element(:final displayName)) {
    return 'hide $displayName';
  }

  return null;
}