FFHtmlView constructor

FFHtmlView({
  1. String? legacyHtmlContent,
  2. 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;
}