onSafeArea method

Widget onSafeArea()

Wraps this widget in a SafeArea to avoid system UI intrusions.

Implementation

Widget onSafeArea() {
  return SafeArea(child: this);
}