exportWrapAlignment function

String exportWrapAlignment(
  1. WrapAlignment wrapAlignment
)

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;
}