build method
- bool hinted = true,
- bool blur = false,
- bool big = false,
- bool expanded = false,
- bool opaque = false,
override
Builds the Widget representation of this CallButton.
Implementation
@override
Widget build({
bool hinted = true,
bool blur = false,
bool big = false,
bool expanded = false,
bool opaque = false,
}) {
return Obx(() {
bool isAudio =
c.audioState.value == LocalTrackState.enabled ||
c.audioState.value == LocalTrackState.enabling;
return CallButtonWidget(
hint: hint,
asset: isAudio ? SvgIcons.callMicrophoneOn : SvgIcons.callMicrophoneOff,
hinted: hinted,
expanded: expanded,
withBlur: blur,
big: big,
constrained: c.isMobile,
opaque: opaque,
onPressed: c.toggleAudio,
);
});
}