CallButtonWidget constructor

const CallButtonWidget({
  1. Key? key,
  2. SvgData? asset,
  3. Offset? offset,
  4. void onPressed()?,
  5. String? hint,
  6. bool hinted = true,
  7. bool expanded = false,
  8. bool withBlur = false,
  9. bool opaque = false,
  10. Color? color,
  11. BoxBorder? border,
  12. bool constrained = false,
  13. 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);