profileBranch method
StatefulShellBranch
profileBranch()
Implementation
StatefulShellBranch profileBranch() {
return StatefulShellBranch(
routes: [
GoRoute(
path: AptofRoutes.profile,
builder: profileBuilder,
routes: [
GoRoute(
path: AptofRoutes.changePasswordRelative,
builder: changePasswordBuilder,
),
],
),
],
);
}