exportWrapAlignment function
Implementation
String exportWrapAlignment(WrapAlignment wrapAlignment) {
String rt = "start";
if (wrapAlignment == WrapAlignment.end) {
rt = "end";
} else if (wrapAlignment == WrapAlignment.center) {
rt = "center";
} else if (wrapAlignment == WrapAlignment.spaceBetween) {
rt = "spaceBetween";
} else if (wrapAlignment == WrapAlignment.spaceAround) {
rt = "spaceAround";
} else if (wrapAlignment == WrapAlignment.spaceEvenly) {
rt = "spaceEvenly";
}
return rt;
}