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:
expanded ? SvgIcons.acceptAudioCall : SvgIcons.acceptAudioCallSmall,
color: style.colors.accept,
hinted: hinted,
expanded: expanded,
withBlur: expanded,
big: big,
constrained: c.isMobile,
border:
highlight
? Border.all(color: style.colors.onPrimaryOpacity50, width: 1.5)
: null,
onPressed: () => c.join(withVideo: false),
);
}