getCategoryName method
Implementation
String getCategoryName() => switch (this) {
NotificationCategory.DAILY_PRACTICE => "notifications.daily_practice".i18n(),
NotificationCategory.MILESTONE => "notifications.milestone".i18n(),
NotificationCategory.TIPS => "notifications.tips".i18n(),
NotificationCategory.ENCOURAGING => "notifications.encouraging".i18n(),
_ => "notifications.other".i18n(),
};