DocumentTypeScreenRoute constructor
DocumentTypeScreenRoute({})
Implementation
DocumentTypeScreenRoute({
Key? key,
required String documentTypeSlug,
List<PageRouteInfo>? children,
}) : super(
DocumentTypeScreenRoute.name,
args: DocumentTypeScreenRouteArgs(
key: key,
documentTypeSlug: documentTypeSlug,
),
rawPathParams: {'documentTypeSlug': documentTypeSlug},
initialChildren: children,
);