ViewPosition constructor

const ViewPosition({
  1. double? top,
  2. double? bottom,
  3. double? left,
  4. double? right,
})

Implementation

const ViewPosition({
  this.top,
  this.bottom,
  this.left,
  this.right,
});