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 isVideo =
c.videoState.value == LocalTrackState.enabled ||
c.videoState.value == LocalTrackState.enabling;
return CallButtonWidget(
hint: hint,
asset: isVideo ? SvgIcons.callVideoOn : SvgIcons.callVideoOff,
hinted: hinted,
expanded: expanded,
big: big,
withBlur: blur,
constrained: c.isMobile,
opaque: opaque,
onPressed: c.toggleVideo,
);
});
}