mapperAlignSelfCSS function
Implementation
String mapperAlignSelfCSS(AlignSelfCSS value) {
switch (value) {
case AlignSelfCSS.auto:
return 'auto';
case AlignSelfCSS.flexStart:
return 'flex-start';
case AlignSelfCSS.flexEnd:
return 'flex-end';
case AlignSelfCSS.center:
return 'center';
case AlignSelfCSS.baseline:
return 'baseline';
case AlignSelfCSS.stretch:
return 'stretch';
}
}