home method

void home({
  1. bool? signedUp,
})

Changes router location to the Routes.home page.

Implementation

void home({bool? signedUp}) {
  go(Routes.home);
  arguments = {'signedUp': signedUp};
}