appliesToLabel property

String get appliesToLabel

Implementation

String get appliesToLabel {
  switch (appliesTo) {
    case 'team':
      return teamName ?? 'Team';
    case 'role_profile':
      return roleProfileName ?? 'Role';
    default:
      return 'All Members';
  }
}