<itemvalue="Nullable annotation for Built Value fields. Fields marked with this annotation are allowed to be null."/>
<itemvalue="Whether the generated serializer should output `null`s. By default this is `false` and nulls are omitted from the output."/>
<itemvalue="Navigation.pushNamed() shortcut.<br><br> Pushes a new named `page` to the stack. It has the advantage of not needing context, so you can call from your business logic. You can send any type of value to the other route in the [arguments]. [id] is for when you are using nested navigation, as explained in documentation By default, GetX will prevent you from push a route that you already in, if you want to push anyway, set [preventDuplicates] to false Note: Always put a slash on the route ('page1'), to avoid unnexpected errors"/>
<itemvalue="Navigation.pushAndRemoveUntil() shortcut.<br><br> Push the given `page`, and then pop several pages in the stack until [predicate] returns true [id] is for when you are using nested navigation, as explained in documentation Obs: unlike other get methods, this one you need to send a function that returns the widget to the page argument, like this: Get.offUntil(GetPageRoute(page: () => HomePage()), predicate) [predicate] can be used like this: `Get.offUntil(page, (route) => (route as GetPageRoute).routeName == 'home')` to pop routes in stack until home, or also like this: `Get.until((route) => !Get.isDialogOpen())`, to make sure the dialog is closed"/>
<itemvalue="feat: tracking of post detail page; fix: reply to second level comment."/>
<itemvalue="clear content of input bar after post submitted."/>