BadgePosition constructor

const BadgePosition({
  1. double? top,
  2. double? end,
  3. double? bottom,
  4. double? start,
  5. bool isCenter = false,
})

This creates a new instance of this widget

Implementation

const BadgePosition({
  this.top,
  this.end,
  this.bottom,
  this.start,
  this.isCenter = false,
});