ChatButtonWidget.send constructor

ChatButtonWidget.send({
  1. Key? key,
  2. bool forwarding = false,
  3. void onPressed()?,
  4. void onLongPress()?,
})

Constructs a send/forward ChatButtonWidget.

Implementation

ChatButtonWidget.send({
  super.key,
  bool forwarding = false,
  this.onPressed,
  this.onLongPress,
}) : icon = SvgIcon(forwarding ? SvgIcons.forward : SvgIcons.send),
     disabledIcon = null;