build method
override
Builds the Widget representation of this CallButton.
Implementation
@override
Widget build({bool hinted = true, bool big = false, bool expanded = false}) {
return Obx(() {
return CallButtonWidget(
hint: hint,
asset:
c.isRemoteVideoEnabled.value
? SvgIcons.callIncomingVideoOn
: SvgIcons.callIncomingVideoOff,
hinted: hinted,
expanded: expanded,
big: big,
constrained: c.isMobile,
onPressed: c.toggleRemoteVideos,
);
});
}