cssJustifyContent property
String
get
cssJustifyContent
Implementation
String get cssJustifyContent {
switch (this) {
case Alignment.topLeft:
case Alignment.centerLeft:
case Alignment.bottomLeft:
return 'flex-start';
case Alignment.topCenter:
case Alignment.center:
case Alignment.bottomCenter:
return 'center';
case Alignment.topRight:
case Alignment.centerRight:
case Alignment.bottomRight:
return 'flex-end';
}
}