l10n property

String get l10n

Returns localized representation of this SearchCategory.

Implementation

String get l10n => switch (this) {
  SearchCategory.user => 'label_search_category_users'.l10n,
  SearchCategory.chat ||
  SearchCategory.recent => 'label_search_category_chats'.l10n,
  SearchCategory.contact => 'label_search_category_contacts'.l10n,
};