LinkingUserPromptScreenText constructor
LinkingUserPromptScreenText({})
Implementation
factory LinkingUserPromptScreenText({
$core.String? title,
$core.String? description,
$core.String? linkButtonText,
$core.String? otherButtonText,
}) {
final result = create();
if (title != null) result.title = title;
if (description != null) result.description = description;
if (linkButtonText != null) result.linkButtonText = linkButtonText;
if (otherButtonText != null) result.otherButtonText = otherButtonText;
return result;
}