TBadgePosition.bottomEnd constructor

TBadgePosition.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 TBadgePosition.bottomEnd({double bottom = -8, double end = -10}) {
  return TBadgePosition._(bottom: bottom, end: end);
}