CallButtonWidget constructor
const
CallButtonWidget({ - Key? key,
- SvgData? asset,
- Offset? offset,
- void onPressed()?,
- String? hint,
- bool hinted = true,
- bool expanded = false,
- bool withBlur = false,
- bool opaque = false,
- Color? color,
- BoxBorder? border,
- bool constrained = false,
- bool big = false,
})
Implementation
const CallButtonWidget({
super.key,
this.asset,
this.offset,
this.onPressed,
this.hint,
this.hinted = true,
this.expanded = false,
this.withBlur = false,
this.opaque = false,
this.color,
this.border,
this.constrained = false,
bool big = false,
}) : size =
constrained
? null
: (big ? 60 : CallController.buttonSize) + (expanded ? 40 : 0);