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