PositionData constructor

const PositionData({
  1. Dim? top,
  2. Dim? right,
  3. Dim? bottom,
  4. Dim? left,
  5. int? zIndex,
  6. Visibility? visibility,
  7. Overflow? overflow,
  8. Map<String, String>? extra,
})

Create a new position.

Implementation

const PositionData({
  this.top,
  this.right,
  this.bottom,
  this.left,
  this.zIndex,
  this.visibility,
  this.overflow,
  this.extra,
});