novuChannel method

  1. @override
String novuChannel(
  1. String value
)
override

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';
}