webName property

String? get webName

Implementation

String? get webName {
  switch (this) {
    case PageLayoutMode.double:
      return 'DOUBLE';
    case PageLayoutMode.automatic:
      return 'AUTOMATIC';
    case PageLayoutMode.single:
      return 'SINGLE';
  }
}