xmlValue property

String xmlValue

Implementation

String get xmlValue {
  switch (this) {
    case TextAnchor.start:
      return 'start';
    case TextAnchor.middle:
      return 'middle';
    case TextAnchor.end:
      return 'end';
    case TextAnchor.inherit:
      return 'inherit';
  }
}