openProfileTab static method

dynamic openProfileTab([
  1. int? tab
])

Implementation

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