changePage method

Future<void> changePage(
  1. AppPages page
)

Change current page by AppPages

Implementation

Future<void> changePage(AppPages page) async {
  _appBloc.add(AppPageChanged(page));
}