BadgePosition.bottomEnd constructor

BadgePosition.bottomEnd({
  1. double bottom = -8,
  2. double end = -10,
})

Factory method that creates a new instance of this widget according to bottom and end

Implementation

factory BadgePosition.bottomEnd({double bottom = -8, double end = -10}) {
  return BadgePosition._(bottom: bottom, end: end);
}