defaultRootPageFactory property

Get the default root page factory.

Implementation

StandardPageWithResultFactory get defaultRootPageFactory =>
    (_factoryTypeMap.entries
        .firstWhereOrNull(
          (e) => e.value.group == StandardPageWithResultFactory.defaultGroup,
        )
        ?.value) ??
    _factoryTypeMap.values.first;