SafeAreaConfig constructor

const SafeAreaConfig({
  1. bool top = true,
  2. bool left = true,
  3. bool right = true,
  4. bool bottom = true,
})

Implementation

const SafeAreaConfig({
  this.top = true,
  this.left = true,
  this.right = true,
  this.bottom = true,
});