FFGenUIChatWelcomeConfig constructor
FFGenUIChatWelcomeConfig({
- bool? showWelcome,
- FFStringValue? title,
- FFStringValue? subtitle,
Implementation
factory FFGenUIChatWelcomeConfig({
$core.bool? showWelcome,
FFStringValue? title,
FFStringValue? subtitle,
}) {
final result = create();
if (showWelcome != null) result.showWelcome = showWelcome;
if (title != null) result.title = title;
if (subtitle != null) result.subtitle = subtitle;
return result;
}