novuChannel method
No description provided for @novuChannel.
In en, this message translates to: '{value, select, email{Email} sms{SMS} push{Push} in_app{In App} inApp{In App} chat{Chat} other{Other}}'
Implementation
@override
String novuChannel(String value) {
String _temp0 = intl.Intl.selectLogic(
value,
{
'email': 'Email',
'sms': 'SMS',
'push': 'Push',
'in_app': 'In App',
'inApp': 'In App',
'chat': 'Chat',
'other': 'Other',
},
);
return '$_temp0';
}