BadgePosition.bottomStart constructor

BadgePosition.bottomStart({
  1. double bottom = -8,
  2. double start = -10,
})

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

Implementation

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