SafeAreaInsets constructor

SafeAreaInsets({
  1. int? top,
  2. int? topMax,
  3. int? left,
  4. int? leftMax,
  5. int? bottom,
  6. int? bottomMax,
  7. int? right,
  8. int? rightMax,
})

Implementation

SafeAreaInsets({
  this.top,
  this.topMax,
  this.left,
  this.leftMax,
  this.bottom,
  this.bottomMax,
  this.right,
  this.rightMax,
});