OnRouteApiScreen typedef

OnRouteApiScreen = void Function({bool? isApiScreenShowed, bool? isShowLogButton})

Signature for a callback that is called when the API screen is shown or hidden.

isApiScreenShowed - Whether the API screen is currently shown (true) or hidden (false). isShowLogButton - Whether the log button is currently shown (true) or hidden (false).

Implementation

typedef OnRouteApiScreen = void Function(
    {bool? isApiScreenShowed, bool? isShowLogButton});