safeArea method

SafeArea safeArea({
  1. Key? key,
  2. bool l = true,
  3. bool t = true,
  4. bool r = true,
  5. bool b = true,
  6. EdgeInsets min = EdgeInsets.zero,
  7. bool maintainBottomViewPadding = false,
})

see SafeArea

Implementation

SafeArea safeArea({
  Key? key,
  bool l = true,
  bool t = true,
  bool r = true,
  bool b = true,
  EdgeInsets min = EdgeInsets.zero,
  bool maintainBottomViewPadding = false,
}) =>
    SafeArea(
      key: key,
      left: l,
      top: t,
      right: r,
      bottom: b,
      minimum: min,
      maintainBottomViewPadding: maintainBottomViewPadding,
      child: this,
    );