FFHtmlView constructor
FFHtmlView({
- String? legacyHtmlContent,
- FFStringValue? htmlContentValue,
Implementation
factory FFHtmlView({
$core.String? legacyHtmlContent,
FFStringValue? htmlContentValue,
}) {
final result = create();
if (legacyHtmlContent != null) result.legacyHtmlContent = legacyHtmlContent;
if (htmlContentValue != null) result.htmlContentValue = htmlContentValue;
return result;
}