asAlignment property

Alignment asAlignment

Implementation

Alignment get asAlignment {
  switch (this) {
    case IndicatorPosition.top:
      return Alignment.topCenter;
    case IndicatorPosition.center:
      return Alignment.center;
    case IndicatorPosition.bottom:
      return Alignment.bottomCenter;
  }
}