hint property
override
Returns a text-represented hint for this CallButton.
Implementation
@override
String get hint =>
c.isMobile
? c.me.isHandRaised.value
? 'btn_call_hand_down_desc'.l10n
: 'btn_call_hand_up_desc'.l10n
: c.me.isHandRaised.value
? 'btn_call_hand_down'.l10n
: 'btn_call_hand_up'.l10n;