HighlightPosition constructor

const HighlightPosition({
  1. double? top,
  2. double? right,
  3. double? bottom,
  4. double? left,
  5. double? width,
  6. double? height,
})

Implementation

const HighlightPosition({
  this.top,
  this.right,
  this.bottom,
  this.left,
  this.width,
  this.height,
});