attachRootComponent method

  1. @override
Future<void> attachRootComponent(
  1. Component app
)
override

Sets app as the new root of the component tree and performs an initial build

Implementation

@override
Future<void> attachRootComponent(Component app) {
  return super.attachRootComponent(ClientComponentRegistry(child: app));
}