setShowSafeArea method

dynamic setShowSafeArea(
  1. bool show
)

Implementation

setShowSafeArea(bool show) {
  WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
    Future.delayed(const Duration(milliseconds: 100), () {
      showSafeArea = show;
      notifyListeners();
    });
  });
}