TBadgePosition.topEnd constructor

TBadgePosition.topEnd({
  1. double top = -8,
  2. double end = -10,
})

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

Implementation

factory TBadgePosition.topEnd({double top = -8, double end = -10}) {
  return TBadgePosition._(top: top, end: end);
}