createRoot method

Future<void> createRoot(
  1. DCFComponentNode component
)

Create a root component

Implementation

Future<void> createRoot(DCFComponentNode component) async {
  await isReady;
  return _vdom.createRoot(component);
}