CustomSafeArea constructor

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

Implementation

const CustomSafeArea({
  super.key,
  this.top = true,
  this.right = true,
  this.left = true,
  this.bottom = true,
  required this.child,
});