NiceSafeArea constructor

const NiceSafeArea({
  1. Key? key,
  2. required Widget child,
  3. bool top = true,
  4. bool bottom = true,
  5. bool left = true,
  6. bool right = true,
  7. EdgeInsets minimum = EdgeInsets.zero,
})

Implementation

const NiceSafeArea({
  super.key,
  required this.child,
  this.top = true,
  this.bottom = true,
  this.left = true,
  this.right = true,
  this.minimum = EdgeInsets.zero,
});