getMenuCallables method

Map<String, dynamic> getMenuCallables()

Implementation

Map<String, dynamic> getMenuCallables() {
  // Example:
  // return {
  //   "HomePage": {
  //     "widget": () =>
  //         HomePage(homePageBodyBuilder: (userData) => HomePageBody(userData)),
  //     "icon": Icons.dashboard,
  //     "args": {}
  //   },
  //   "UserProfileEditor": {
  //     "widget": () => UserProfile(),
  //     "icon": Icons.person,
  //     "args": {}
  //   },
  //   "BillingEditor": {"widget": null, "icon": Icons.payment, "args": {}},
  //   "|about|": {"widget": () => About(), "icon": Icons.info, "args": {}},
  //   "logout": {
  //     "function": (context) => logOut(context),
  //     // "type": "sync" || "async" (default),
  //     "icon": Icons.logout,
  //     "args": {}
  //   },
  // };
  throw UnimplementedError();
}