File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -315,8 +315,8 @@ abstract class RelativeGoRouteData extends _GoRouteData {
315315 'GoRouteState to RelativeGoRouteData expando' ,
316316 );
317317
318- /// The location of this route, e.g. person/p1
319- String get location => throw _GoRouteData .shouldBeGeneratedError;
318+ /// The subpath of this route, e.g. person/p1
319+ String get subpath => throw _GoRouteData .shouldBeGeneratedError;
320320
321321 /// The relative location of this route, e.g. ./person/p1
322322 String get relativeLocation => throw _GoRouteData .shouldBeGeneratedError;
Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ void main() {
481481 }
482482
483483 await expectUnimplementedError ((BuildContext context) {
484- const _RelativeGoRouteDataBuild ().location ;
484+ const _RelativeGoRouteDataBuild ().subpath ;
485485 });
486486
487487 await expectUnimplementedError ((BuildContext context) {
You can’t perform that action at this time.
0 commit comments