DeclarativeMdx.fromPageContent constructor

DeclarativeMdx.fromPageContent(
  1. String content, {
  2. Customizations? customizations,
})

Implementation

factory DeclarativeMdx.fromPageContent(
  String content, {
  Customizations? customizations,
}) => DeclarativeMdx(
  DeclarativeMdxConfiguration(page: WorkflowPage(content: content)),
  customizations: customizations,
);