build method
override
Builds the Widget representation of this CallButton.
Implementation
@override
Widget build({bool hinted = true, bool expanded = false, bool big = false}) {
final style = Theme.of(router.context!).style;
return CallButtonWidget(
hint: hint,
asset: SvgIcons.callEndBig,
color: style.colors.declineOpacity50,
hinted: hinted,
expanded: expanded,
withBlur: expanded,
big: big,
constrained: c.isMobile,
onPressed: c.decline,
);
}