fetchAllAPIs method

void fetchAllAPIs()

Implementation

void fetchAllAPIs() async {
  await Future.wait([
    getNotifications().catchError((e) => handleError(e)),
    getEvents(1).catchError((e) => handleError(e)),
  ]);
}