asAlignment property
Alignment
get
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;
}
}