hint property
override
Returns a text-represented hint for this CallButton.
Implementation
@override
String get hint {
bool isVideo =
c.videoState.value == LocalTrackState.enabled ||
c.videoState.value == LocalTrackState.enabling;
return c.isMobile
? isVideo
? 'btn_call_video_off_desc'.l10n
: 'btn_call_video_on_desc'.l10n
: isVideo
? 'btn_call_video_off'.l10n
: 'btn_call_video_on'.l10n;
}