error method

PageRouteBuilder error(
  1. String path,
  2. String error
)

Implementation

PageRouteBuilder error(String path, String error) {
  final appId = path;
  return pageRouteBuilderWithAppId(accessBloc.state, appId,
      page: Registry.registry()!.error(appId: appId, error: error));
}