FFGenUIChatWelcomeConfig constructor

FFGenUIChatWelcomeConfig({
  1. bool? showWelcome,
  2. FFStringValue? title,
  3. 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;
}