safeArea method

SafeArea safeArea({
  1. bool left = true,
  2. bool top = true,
  3. bool right = true,
  4. bool bottom = true,
  5. EdgeInsets minimum = EdgeInsets.zero,
  6. bool maintainBottomViewPadding = false,
})

Implementation

SafeArea safeArea({
  final bool left = true,
  final bool top = true,
  final bool right = true,
  final bool bottom = true,
  final EdgeInsets minimum = EdgeInsets.zero,
  final bool maintainBottomViewPadding = false,
}) {
  return SafeArea(
    child: this,
    left: left,
    top: top,
    right: right,
    bottom: bottom,
    minimum: minimum,
    maintainBottomViewPadding: maintainBottomViewPadding,
  );
}