SafeAreaConfig constructor

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

Implementation

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