safeArea method
Wrap this widget with safe area.
Implementation
SafeArea safeArea({
Key? key,
bool left = true,
bool top = true,
bool right = true,
bool bottom = true,
EdgeInsets minimum = .zero,
bool maintainBottomViewPadding = false,
}) => SafeArea(
key: key,
left: left,
right: right,
top: top,
bottom: bottom,
minimum: minimum,
maintainBottomViewPadding: maintainBottomViewPadding,
child: this,
);