File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -315,8 +315,8 @@ abstract class RelativeGoRouteData extends _GoRouteData {
315
315
'GoRouteState to RelativeGoRouteData expando' ,
316
316
);
317
317
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;
320
320
321
321
/// The relative location of this route, e.g. ./person/p1
322
322
String get relativeLocation => throw _GoRouteData .shouldBeGeneratedError;
Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ void main() {
481
481
}
482
482
483
483
await expectUnimplementedError ((BuildContext context) {
484
- const _RelativeGoRouteDataBuild ().location ;
484
+ const _RelativeGoRouteDataBuild ().subpath ;
485
485
});
486
486
487
487
await expectUnimplementedError ((BuildContext context) {
You can’t perform that action at this time.
0 commit comments