FFGenUIChatSendButtonStyling constructor
FFGenUIChatSendButtonStyling({
- FFColorValue? iconColor,
- FFColorValue? backgroundColor,
Implementation
factory FFGenUIChatSendButtonStyling({
FFColorValue? iconColor,
FFColorValue? backgroundColor,
}) {
final result = create();
if (iconColor != null) result.iconColor = iconColor;
if (backgroundColor != null) result.backgroundColor = backgroundColor;
return result;
}