ChatButtonWidget constructor

ChatButtonWidget(
  1. ChatButton button, {
  2. Key? key,
})

Constructs a ChatButtonWidget from the provided ChatButton.

Implementation

ChatButtonWidget(ChatButton button, {super.key})
  : onPressed = button.onPressed,
    onLongPress = null,
    icon = Transform.translate(
      offset: button.offset,
      child: SvgIcon(button.asset),
    ),
    disabledIcon = Transform.translate(
      offset: button.offset,
      child: SvgIcon(button.disabled ?? button.asset),
    );