FlutterTagPosition.bottomStart constructor

FlutterTagPosition.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 FlutterTagPosition.bottomStart(
    {double bottom = -8, double start = -10}) {
  return FlutterTagPosition._(bottom: bottom, start: start);
}