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