mapperScopeTable function

String mapperScopeTable(
  1. ScopeTable value
)

Implementation

String mapperScopeTable(ScopeTable value) {
  switch (value) {
    case ScopeTable.col:
      return 'col';
    case ScopeTable.colgroup:
      return 'colgroup';
    case ScopeTable.row:
      return 'row';
    case ScopeTable.rowgroup:
      return 'rowgroup';
  }
}