build method

  1. @override
Widget build({
  1. bool hinted = true,
  2. bool expanded = false,
  3. bool big = false,
})
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.callVideoOn,
    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: true),
  );
}