safeArea method
安全区
Implementation
Widget safeArea({
Key? key,
bool top = true,
bool bottom = true,
bool left = true,
bool right = true,
EdgeInsets minimum = EdgeInsets.zero,
}) =>
SafeArea(
key: key,
top: top,
bottom: bottom,
left: left,
right: right,
minimum: minimum,
child: this,
);