ChatButtonWidget constructor
- ChatButton button, {
- 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),
);