DeclarativeMdx.fromPageAsset constructor
DeclarativeMdx.fromPageAsset(
- String assetName, {
- Customizations? customizations,
Implementation
factory DeclarativeMdx.fromPageAsset(
String assetName, {
Customizations? customizations,
}) => DeclarativeMdx(
DeclarativeMdxConfiguration(
page: WorkflowPage(contentLoader: () => rootBundle.loadString(assetName)),
),
customizations: customizations,
);