openProfileTab static method
- int? tab
Implementation
static openProfileTab([int? tab]) async {
if (tab != null) {
Requests.box.write('profile_tab', tab);
await Requests.box.save();
}
goto(Routes.PROFILE);
}
static openProfileTab([int? tab]) async {
if (tab != null) {
Requests.box.write('profile_tab', tab);
await Requests.box.save();
}
goto(Routes.PROFILE);
}