work method

void work(
  1. WorkTab? tab, {
  2. bool push = false,
})

Changes router location to the Routes.work page.

Implementation

void work(WorkTab? tab, {bool push = false}) => (push ? this.push : go)(
  '${Routes.work}${tab == null ? '' : '/${tab.name}'}',
);